forked from miksrv/developer-portfolio-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
127 lines (127 loc) · 3.92 KB
/
.eslintrc
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
{
"env": {
"browser": true, // Browser global variables like `window` etc.
"commonjs": true, // CommonJS global variables and CommonJS scoping.Allows require, exports and module.
"es2021": true, // Enable all ECMAScript features except for modules.
"jest": true, // Jest global variables like `it` etc.
"node": true // Defines things like process.env when generating through node
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"plugin:jest/recommended",
"plugin:testing-library/react",
"plugin:import/typescript",
"plugin:prettier/recommended"
],
"overrides": [
{
"files": ["**/*.ts?(x)"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-array-constructor": "warn",
"no-array-constructor": "off"
}
}
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"import",
"sort-keys",
"react",
"@typescript-eslint",
"prettier"
],
"root": true, // For configuration cascading.
"rules": {
"jest/no-mocks-import": "off",
"react/react-in-jsx-scope": "off",
"comma-dangle": ["warn", "never"],
"eol-last": "error",
"jsx-quotes": ["warn", "prefer-single"],
"max-len": [
"warn",
{
"code": 120,
"ignoreTemplateLiterals": true,
"ignoreStrings": true
}
],
"no-console": "warn",
"no-duplicate-imports": "warn",
"no-restricted-imports": [
"error",
{
"paths": [
{
"message": "Please use import foo from 'lodash-es/foo' instead.",
"name": "lodash"
},
{
"message": "Avoid using chain since it is non tree-shakable. Try out flow instead.",
"name": "lodash-es/chain"
},
{
"importNames": ["chain"],
"message": "Avoid using chain since it is non tree-shakable. Try out flow instead.",
"name": "lodash-es"
},
{
"message": "Please use import foo from 'lodash-es/foo' instead.",
"name": "lodash-es"
}
],
"patterns": ["lodash/**", "lodash/fp/**"]
}
],
"@typescript-eslint/no-unused-vars": "warn",
"object-curly-spacing": ["warn", "always"],
"quotes": ["warn", "single"],
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
],
"react/prop-types": "warn",
"sort-imports": [
"warn",
{
"ignoreCase": false,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false
}
],
"sort-keys/sort-keys-fix": [
"warn",
"asc",
{
"caseSensitive": true,
"minKeys": 2,
"natural": false
}
]
},
"settings": {
"react": {
"version": "detect"
}
}
}