-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
47 lines (43 loc) · 919 Bytes
/
.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
{
"extends": [
"plugin:@wordpress/eslint-plugin/recommended-with-formatting",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"node_modules/**",
"gulpfile.js",
"postcss.config.js",
"rollup.config.js",
"assets/js/**/*.js"
],
"rules": {
"space-in-parens": ["error", "never"],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"import/no-unresolved": [
2,
{
"ignore": ["^jquery$"]
}
],
"@typescript-eslint/explicit-module-boundary-types": "off"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": ["error"]
}
}
],
"globals": {
"jQuery": "readonly",
"cardanopress_bootstrap_options": "writable"
}
}