-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
71 lines (71 loc) · 2.08 KB
/
.eslintrc.json
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
{
"root": true,
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@wordpress/eslint-plugin/recommended-with-formatting"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"rules": {
"array-bracket-spacing": ["error", "never"],
"block-spacing": ["error", "always"],
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "never",
"exports": "never",
"functions": "never"
}],
"comma-spacing": [ "error",{
"before": false,
"after": true
}],
"computed-property-spacing": ["error", "never"],
"eol-last": ["error", "always"],
"indent": ["error", 2],
"jsdoc/tag-lines": ["error", "always", {
"count": 0
}],
"jsx-quotes": ["error", "prefer-double"],
"linebreak-style": ["error", "unix"],
"no-alert": "error",
"no-console": "error",
"no-eval": "error",
"no-undef": 0,
"no-implied-eval":"error",
"no-template-curly-in-string": "error",
"no-useless-concat":"error",
"object-curly-spacing": ["error", "always"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}],
"space-in-parens": ["error", "never"],
"spaced-comment": ["error", "always"],
"template-curly-spacing": ["error", "never"]
},
"overrides": [{
"files": ["*.md"],
"parser": "eslint-plugin-markdownlint/parser",
"extends": ["plugin:markdownlint/recommended"],
"rules": {
"markdownlint/md013": "off"
}
}]
}