2018-09-10 22:25:45 +08:00
|
|
|
{
|
|
|
|
"extends": "airbnb",
|
|
|
|
"env": {
|
|
|
|
"es6": true,
|
2019-08-30 20:08:00 +08:00
|
|
|
"browser": true
|
2018-09-10 22:25:45 +08:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 8
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"camelcase": 0,
|
2019-08-30 20:08:00 +08:00
|
|
|
"no-console": 0,
|
|
|
|
"func-names": 0,
|
|
|
|
"prefer-object-spread": 0,
|
2018-09-10 22:25:45 +08:00
|
|
|
"no-param-reassign": [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"props": false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"import/no-extraneous-dependencies": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"devDependencies": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|