forked from gosling-lang/gosling.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
63 lines (63 loc) · 2.31 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
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
'plugin:jsx-a11y/recommended',
],
env: {
browser: true,
node: true
},
parserOptions: {
project: 'tsconfig.json',
ecmaVersion: 6,
sourceType: 'module'
},
settings: {
react: {
version: "detect"
}
},
rules: {
'prettier/prettier': 'warn',
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin#supported-rules
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/prefer-for-of': 'error',
'@typescript-eslint/no-for-in-array': 'error',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-empty-function': 'off', // we need this in HiGlass plugin track
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'no-unused-vars': 'off', // must disable the base rule as it can report incorrect errors
// https://www.executeprogram.com/blog/the-code-is-the-to-do-list
"no-warning-comments": ["error", { terms: ["xxx"], location: "anywhere" }],
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true
}
],
// https://eslint.org/docs/rules/
'linebreak-style': ['error', 'unix'],
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-trailing-spaces': 'error',
'no-irregular-whitespace': ['error', { skipComments: true }],
'no-alert': 'error',
'prefer-const': 'error',
'no-case-declarations': 'warn',
'no-return-assign': 'error',
'no-useless-call': 'error',
'no-shadow': 'off', // 'error', // we could enable this later
'no-useless-concat': 'error',
"prefer-template": 'error'
}
};