-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
149 lines (146 loc) · 6.04 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
141
142
143
144
145
146
147
148
149
module.exports = {
root: true,
env: {
es2017: true
},
parser: "@typescript-eslint/parser", // Specifies the ESLint parser
parserOptions: {
sourceType: "module", // Allows for the use of imports
ecmaFeatures: {
jsx: true // Allows for the parsing of JSX
},
project: ["tsconfig.json"],
},
extends: [
// Uses the recommended built-in rules from ESLint
// https://eslint.org/docs/rules/
"eslint:recommended",
// Uses the recommended rules from @eslint-plugin-react
// https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules
"plugin:react/recommended",
// Uses the recommended rules from @eslint-plugin-react-hooks
// https://github.com/facebook/react/tree/master/packages/eslint-plugin-react-hooks
"plugin:react-hooks/recommended",
// Uses the recommended rules from the @typescript-eslint/eslint-plugin
// https://github.com/typescript-eslint/typescript-eslint/tree/master/packages/eslint-plugin
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
rules: {
/**
* Enabled formatting options (should be raised as warnings only)
*/
"array-bracket-spacing": ["warn"],
"arrow-spacing": ["warn"],
"curly": ["warn"],
// TODO: replace with @typescript-eslint/indent in the future,
// see https://github.com/typescript-eslint/typescript-eslint/issues/1824
"indent": ["warn", 2, {"SwitchCase": 1, "flatTernaryExpressions": true}],
"key-spacing": ["warn", {"mode": "strict"}],
"max-len": ["warn", {"code": 100, "ignoreUrls": true}],
"no-irregular-whitespace": ["warn"],
"no-multi-spaces": ["warn"],
"no-trailing-spaces": ["warn"],
"no-whitespace-before-property": ["warn"],
"space-before-blocks": ["warn"],
"space-in-parens": ["warn"],
"space-unary-ops": ["warn"],
"yield-star-spacing": ["warn"],
"@typescript-eslint/keyword-spacing": ["warn"],
"@typescript-eslint/member-delimiter-style": ["warn"],
// Unlike TSLint, ESLint always warns on arrow function properties in classes:
// https://github.com/typescript-eslint/typescript-eslint/issues/2633
"@typescript-eslint/semi": ["warn"],
"@typescript-eslint/space-before-function-paren": ["warn", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"@typescript-eslint/space-infix-ops": ["warn"],
"@typescript-eslint/type-annotation-spacing": ["warn"],
"@typescript-eslint/quotes": ["warn", "single", {"allowTemplateLiterals": true}],
/**
* Disabled recommended rules
*/
// Already handled by TypeScript
"constructor-super": "off",
// Accidental re-assignment is already handled by TypeScript
"no-cond-assign": "off",
// No need in TypeScript, causes errors in namespace blocks:
// https://github.com/typescript-eslint/typescript-eslint/issues/239
"no-inner-declarations": "off",
// Incorrectly flags non-component functions which return JSX as components
"react/display-name": "off",
"react/no-unescaped-entities": "off",
// Disable propTypes checking since we using TypeScript
"react/prop-types": "off",
// Too many false positives for checking hook dependencies
"react-hooks/exhaustive-deps": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
// Allow empty interfaces for component props
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-misused-promises": "off",
// We use namespace blocks for grouping, not as modules
"@typescript-eslint/no-namespace": "off",
// Non-null assertions used very frequently in Ontodia
"@typescript-eslint/no-non-null-assertion": "off",
// Disabled as it produces too many false positives on existing codebase
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-var-requires": "off",
/**
* Enabled additional rules
*/
"eqeqeq": ["warn"],
"no-console": ["warn", {"allow": ["warn", "error"]}],
"@typescript-eslint/ban-tslint-comment": ["warn"],
"@typescript-eslint/consistent-type-assertions": ["warn", {
"assertionStyle": "as",
"objectLiteralTypeAssertions": "allow-as-parameter"
}],
"@typescript-eslint/explicit-member-accessibility": ["warn", {
"accessibility": "no-public"
}],
"@typescript-eslint/no-throw-literal": ["error"],
/**
* Changed rules
*/
// Changed to allow let with destructuring even if only some variable are mutated
"prefer-const": ["warn", {"destructuring": "all"}],
// Changed to allow "while (true)" loops
"no-constant-condition": ["warn", {"checkLoops": false}],
"no-extra-boolean-cast": ["warn"],
"no-useless-escape": ["warn"],
"no-var": ["warn"],
"react/jsx-key": ["warn"],
"react/no-children-prop": ["warn"],
// Changed to allow empty private and protected constructors
"@typescript-eslint/no-empty-function": ["warn", {
"allow": ["private-constructors", "protected-constructors"]
}],
"@typescript-eslint/no-extra-semi": ["warn"],
"@typescript-eslint/no-inferrable-types": ["warn"],
"@typescript-eslint/no-unnecessary-type-assertion": ["warn"],
"@typescript-eslint/prefer-as-const": ["warn"],
"@typescript-eslint/prefer-namespace-keyword": ["warn"],
"@typescript-eslint/prefer-regexp-exec": ["warn"],
"@typescript-eslint/restrict-plus-operands": ["warn"],
"@typescript-eslint/restrict-template-expressions": ["warn", {
"allowNumber": true,
"allowBoolean": true,
"allowNullish": true
}],
"@typescript-eslint/unbound-method": ["error", {"ignoreStatic": true}],
},
ignorePatterns: ["*.js", "*.d.ts", "**/node_modules/*"],
settings: {
react: {
version: "16.8"
}
}
};