forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
45 lines (45 loc) · 1.25 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
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript'
],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'prettier/prettier': 'warn',
'import/no-unresolved': 'off',
'camelcase': 'warn',
'simple-import-sort/sort': 'warn',
'sort-imports': 'off',
"import/first": "warn",
"import/newline-after-import": "warn",
"import/no-duplicates": "warn",
'import/no-absolute-path': 'warn',
'import/no-unused-modules': 'warn',
'import/no-deprecated': 'warn',
'import/no-self-import': 'error'
},
plugins: [
'@typescript-eslint',
'prettier',
'import',
'simple-import-sort'
],
overrides: [{
'files': '**/*.ts',
'rules': {
'import/order': ['off', {
'newlines-between': 'always'
}],
}
}]
}