2017-07-26 22:03:18 +08:00
|
|
|
module.exports = {
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
|
|
|
"node": true
|
|
|
|
},
|
2017-09-17 13:36:51 +08:00
|
|
|
extends: ["eslint:recommended", "plugin:react/recommended"],
|
2017-07-26 22:03:18 +08:00
|
|
|
"parser": "babel-eslint",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"experimentalObjectRestSpread": true,
|
|
|
|
"jsx": true
|
|
|
|
},
|
|
|
|
"sourceType": "module"
|
|
|
|
},
|
2017-09-17 13:36:51 +08:00
|
|
|
plugins: [
|
|
|
|
"react",
|
|
|
|
"import"
|
2017-07-26 22:03:18 +08:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"indent": [
|
|
|
|
"error",
|
2017-09-27 18:21:01 +08:00
|
|
|
4,
|
2017-07-26 22:03:18 +08:00
|
|
|
{
|
|
|
|
"SwitchCase": 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"linebreak-style": [
|
|
|
|
"error",
|
|
|
|
"unix"
|
|
|
|
],
|
2017-09-15 12:01:17 +08:00
|
|
|
|
2017-07-27 15:06:42 +08:00
|
|
|
"strict": 0,
|
2017-09-06 10:18:13 +08:00
|
|
|
"comma-dangle": ["error", "never"],
|
|
|
|
"no-console": ["off"]
|
2017-07-26 22:03:18 +08:00
|
|
|
}
|
2017-09-05 10:24:13 +08:00
|
|
|
};
|
|
|
|
|