-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
48 lines (47 loc) · 1.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
const OFF = 0;
const WARN = 1;
const ERROR = 2;
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser',
plugins: ['react', '@typescript-eslint', 'prettier'],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
env: {
browser: true,
jest: true,
},
settings: {
react: {
pragma: 'React',
version: 'detect',
},
},
rules: {
'sort-imports': OFF,
//eslint-plugin-react
'react/display-name': [OFF, {ignoreTranspilerName: OFF}],
'react/jsx-props-no-spreading': [OFF],
// @typescript-eslint
'@typescript-eslint/no-unused-vars': ERROR,
'@typescript-eslint/explicit-function-return-type': ERROR,
'@typescript-eslint/no-explicit-any': ERROR,
},
globals: {
__CLIENT__: true,
__SERVER__: true,
__DEV__: true,
},
};