forked from octavenz/wagtail-advanced-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
85 lines (75 loc) · 1.73 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
extends:
eslint-config-airbnb
parser:
babel-eslint
settings:
ecmascript: 6
ecmaFeatures:
jsx: true
modules: true
destructuring: true
classes: true
forOf: true
blockBindings: true
arrowFunctions: true
env:
browser: true
jest: true
globals:
__ENVIRONMENT: false
__DEVELOPMENT: false
__SENTRY_DSN: false
describe: false
expect: false
it: false
fixture: false
rules:
max-len: 0
camelcase: 0
object-curly-newline: 0
no-underscore-dangle: 0
no-nested-ternary: 0
arrow-body-style: 0
arrow-parens: 0
class-methods-use-this: 0
radix: 0
comma-dangle: ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}]
func-names: 0
indent: ["error", 4]
jsx-quotes: [2, "prefer-double"]
new-cap: 0
no-plusplus: 0
no-return-assign: 0
quote-props: 0
template-curly-spacing: [2, "always"]
no-restricted-imports: [2, { "paths": ["lodash"] }]
lines-between-class-members: 0
no-param-reassign: 1
# import rules
import/extensions: 0
import/no-extraneous-dependencies: 0
import/no-unresolved: 0
import/prefer-default-export: 0
import/no-named-as-default-member: 0
# react rules
react/prop-types: 0
react/forbid-prop-types: 0
react/jsx-boolean-value: 0
react/jsx-curly-spacing: [2, {"when": "always", "spacing": {
"objectLiterals": "never"
}}]
react/jsx-filename-extension: 0
react/jsx-one-expression-per-line: 0
react/prefer-stateless-function: 0
react/require-default-props: 0
react/no-multi-comp: 1
react/jsx-indent: ["error", 4]
react/jsx-indent-props: 0
react/no-unescaped-entities: [2, {"forbid": ["<", ">"]}]
jsx-a11y/anchor-is-valid: 1