-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.eslintrc.js
More file actions
22 lines (22 loc) · 631 Bytes
/
Copy path.eslintrc.js
File metadata and controls
22 lines (22 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": "off",
"react/prop-type": "off",
"no-use-before-define": "off",
"linebreak-style": "off",
"react/jsx-indent": "off",
"no-trailing-spaces": "off",
"react/jsx-indent-props": "off",
"react/prop-types": "off",
"class-methods-use-this": "off",
"indent": [
"error",
4
],
"import/prefer-default-export": "off",
"react/jsx-no-bind": "off",
"react/destructuring-assignment": "off"
},
"parser": "babel-eslint"
};