-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
43 lines (43 loc) · 865 Bytes
/
.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
{
"parser": "babel-eslint",
"env": {
"browser": true,
"jquery": true
},
"globals": {
"wp": false,
"jQuery": false,
"angular": false,
"Hametuha": true,
"wpApiSettings": false,
"ga": false,
"Hashboard": true,
"Vue": false
},
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"rules": {
"no-alert": "off",
"prettier/prettier": "off",
"object-shorthand": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/no-undefined-types": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-sort-props": "off",
"jsdoc/check-tag-names": "off",
"import/order": "off",
"no-prototype-builtins": "off",
"object-curly-newline": "off",
"object-property-newline": "off",
"yoda": "off",
"strict": "off",
"@wordpress/valid-sprintf": "off",
"camelcase": "off"
},
"settings": {
"react": {
"version": "16.9.0"
}
}
}