24 lines
447 B
JSON
24 lines
447 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": [
|
|
"standard"
|
|
],
|
|
"globals": {},
|
|
"plugins": [],
|
|
"ignorePatterns": ["node_modules/", "dist/", "webpack.config.js"],
|
|
"rules": {
|
|
"max-len": [
|
|
"error",
|
|
{
|
|
"code": 120,
|
|
"comments": 120
|
|
}
|
|
],
|
|
"no-unused-vars": [2, {"argsIgnorePattern": "^_"}]
|
|
}
|
|
}
|