2015-06-01 22:09:28 +00:00
|
|
|
{
|
2015-12-28 23:34:32 +00:00
|
|
|
"extends": "airbnb",
|
|
|
|
"parser": "babel-eslint",
|
2017-02-16 02:55:50 +00:00
|
|
|
"env": {
|
|
|
|
"browser": true
|
|
|
|
},
|
2015-12-28 23:34:32 +00:00
|
|
|
"rules": {
|
2017-02-16 02:55:50 +00:00
|
|
|
"arrow-parens": 0,
|
2015-12-28 23:34:32 +00:00
|
|
|
"comma-dangle": [2, "never"],
|
2017-05-22 01:49:37 +00:00
|
|
|
"consistent-return": 0,
|
2017-02-16 02:55:50 +00:00
|
|
|
"jsx-a11y/no-static-element-interactions": 0,
|
2015-12-28 23:34:32 +00:00
|
|
|
"new-cap": [2, { "capIsNewExceptions": ["Map", "List", "Record", "Set"] }],
|
|
|
|
"no-console": 0,
|
|
|
|
"no-param-reassign": 0,
|
2017-02-16 02:55:50 +00:00
|
|
|
"no-plusplus": 0,
|
|
|
|
"react/jsx-filename-extension": 0,
|
|
|
|
"react/no-array-index-key": 0,
|
2016-03-14 22:22:24 +00:00
|
|
|
"react/prop-types": 0,
|
2017-04-09 21:49:37 +00:00
|
|
|
"react/prefer-stateless-function": 0
|
2015-12-28 23:34:32 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
2017-02-16 02:55:50 +00:00
|
|
|
"DEV": true
|
2015-12-28 23:34:32 +00:00
|
|
|
}
|
|
|
|
}
|