15 lines
287 B
JSON
15 lines
287 B
JSON
{
|
|
"extends": ["airbnb-base", "eslint:recommended", "plugin:node/recommended"],
|
|
"plugins": [
|
|
"import",
|
|
"node"
|
|
],
|
|
"rules": {
|
|
"no-console": ["error", { "allow": ["warn", "error"] }]
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
}
|
|
}
|