You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
488 B
31 lines
488 B
{
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"env": {
|
|
"node": true,
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"Promise": true,
|
|
"Set": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"plugins": [
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": ["error", {
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"printWidth": 100
|
|
}],
|
|
|
|
"no-console": 0,
|
|
"eqeqeq": ["error", "always", {"null": "ignore"}],
|
|
"strict": ["error", "global"]
|
|
}
|
|
}
|