-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
40 lines (40 loc) · 1.16 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
extends: [
require.resolve('@justeattakeaway/eslint-config-pie/strict'),
'plugin:@typescript-eslint/recommended'
],
plugins: [
'json-format',
'@typescript-eslint'
],
root: true,
settings: {
'json/sort-package-json': false,
},
rules: {
'class-methods-use-this': 'off',
'import/extensions': 'off',
'import/no-unresolved': 'off',
'import/no-extraneous-dependencies': 'off',
'no-shadow': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-var-requires': 'off',
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: `${__dirname}/tsconfig.json`,
},
},
{
files: ['**/components/**/visual/*.spec.ts'],
rules: {
// ForOfStatement is allowed in Visual tests
'no-restricted-syntax': ['error', 'ForInStatement', 'LabeledStatement', 'WithStatement'],
'no-await-in-loop': 'off',
},
}
],
};