forked from TanStack/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (32 loc) · 776 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"globals": {
"describe": true,
"it": true,
"before": true,
"after": true,
"beforeEach": true,
"afterEach": true,
"window": true,
"document": true
},
"rules": {
"padded-blocks": 0,
"comma-dangle": 0,
"react/jsx-filename-extension": 0,
"jsx-a11y/href-no-hash": 0,
"jsx-a11y/label-has-for": 0,
"react/jsx-closing-bracket-location": 0,
"space-in-parens": 0,
"max-len": 0,
"arrow-body-style": 0,
"react/prop-types": 0,
"react/forbid-prop-types": 0,
"react/require-default-props": 0,
"react/no-multi-comp": 0,
"brace-style": [1, "stroustrup"],
"react/prefer-stateless-function": 0,
"import/no-extraneous-dependencies": 0
}
}