forked from TumblrX/Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
23 lines (23 loc) · 860 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
{
"extends": ["react-app", "plugin:jsx-a11y/recommended"],
"plugins": ["jsx-a11y"],
"rules": {
"react/jsx-filename-extension": [1, { "extensions": [".js"] }],
"no-param-reassign": ["error", { "props": false }],
"react/prop-types": "off",
"import/prefer-default-export": "off",
"react/button-has-type": "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"jsx-a11y/anchor-has-content":"off",
"jsx-a11y/no-redundant-roles":"off",
"react/react-in-jsx-scope":"off",
"jsx-a11y/anchor-is-valid":"off",
"import/order":"off",
"import/no-named-as-default":"off",
"linebreak-style":"off",
"import/no-extraneous-dependencies":"off"
}
}