-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
62 lines (62 loc) · 1.37 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
module.exports = {
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
],
env: {
browser: true,
node: true,
jest: true,
es6: true,
},
globals: {
browser: false,
},
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
ecmaFeatures: {
jsx: true,
},
},
rules: {
"arrow-parens": [2, "as-needed"],
"arrow-body-style": [2, "as-needed"],
"class-methods-use-this": 0,
"no-console": 1,
"no-param-reassign": ["error", { props: false }],
"no-trailing-spaces": 2,
"no-use-before-define": [
2,
{
functions: false,
},
],
"object-curly-newline": [
2,
{
multiline: true,
consistent: true,
},
],
"object-property-newline": [
2,
{
allowAllPropertiesOnSameLine: true,
},
],
"prettier/prettier": 2,
},
settings: {
"import/resolver": {
node: {
paths: ["src"],
},
},
react: {
version: "detect",
},
},
};