-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
140 lines (138 loc) · 3.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
const fs = require('fs');
const cspellWords = JSON.parse(
fs.readFileSync('.vscode/settings.json').toString()
)['cSpell.words'];
module.exports = {
extends: ['airbnb-typescript/base', 'prettier'],
parser: '@typescript-eslint/parser',
root: true,
env: {
browser: true
},
plugins: ['spellcheck'],
parserOptions: {
project: './tsconfig.json',
ecmaFeatures: {
legacyDecorators: true
}
},
rules: {
'@typescript-eslint/comma-dangle': ['error', 'never'],
'@typescript-eslint/indent': 'off',
'@typescript-eslint/no-shadow': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'arrow-body-style': 'off',
'class-methods-use-this': 'off',
'comma-dangle': 'off',
'default-case': 'off',
'import/extensions': ['error', 'never', { json: 'always' }],
'import/no-cycle': 'off',
'import/prefer-default-export': 'off',
'max-classes-per-file': 'off',
'max-lines': ['error', 500],
'max-lines-per-function': ['warn', 50],
'no-await-in-loop': 'off',
'no-empty-function': ['warn', { allow: ['constructors'] }],
'no-extra-boolean-cast': 'off',
'no-param-reassign': 'off',
'no-plusplus': 'off',
'no-return-assign': 'off',
'no-shadow': 'off',
'no-underscore-dangle': 'off',
'no-use-before-define': 'off',
'no-useless-constructor': 'off',
'react/jsx-props-no-spreading': 'off',
yoda: 'off',
'spellcheck/spell-checker': [
'warn',
{
comments: true,
strings: true,
identifiers: true,
lang: 'en_US',
skipWords: cspellWords,
skipIfMatch: ['http?://[^s]*', '^[-\\w]+/[-\\w\\.]+$'],
skipWordIfMatch: [],
minLength: 3
}
],
'lines-between-class-members': [
'error',
'always',
{ exceptAfterSingleLine: true }
],
'import/no-unresolved': [
'error',
{
ignore: ['^~']
}
],
'no-unused-vars': [
'warn',
{
args: 'after-used',
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
vars: 'all'
}
],
'@typescript-eslint/no-unused-vars': [
'warn',
{
args: 'after-used',
argsIgnorePattern: '^_',
ignoreRestSiblings: true,
vars: 'all'
}
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'**/*.spec.js',
'**/*.spec.jsx',
'**/*.spec.ts',
'**/*.spec.tsx',
'**/*.story.js',
'**/*.story.jsx',
'**/*.story.ts',
'**/*.story.tsx',
'**/*.test.js',
'**/*.test.jsx',
'**/*.test.ts',
'**/*.test.tsx',
'storybook/**/*.js',
'storybook/**/*.jsx',
'storybook/**/*.ts',
'storybook/**/*.tsx',
'tests/*.js',
'tests/*.jsx',
'tests/*.ts',
'tests/*.tsx'
]
}
]
},
overrides: [
{
files: ['*.test.js', '*.test.jsx', '*.test.ts', '*.test.tsx'],
env: {
jest: true
},
plugins: ['jest']
},
{
files: ['*.ts', '*.tsx'],
rules: {
'no-unused-vars': 'off'
}
}
],
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
}
}
}
};