Version 1.4.0
This commit is contained in:
22
.eslintrc.js
Normal file
22
.eslintrc.js
Normal file
@@ -0,0 +1,22 @@
|
||||
module.exports = {
|
||||
"rules": {
|
||||
"no-console": `off`,
|
||||
"indent": [`error`, 4],
|
||||
"semi": [`error`, `always`],
|
||||
"quotes": [`error`, `backtick`],
|
||||
"keyword-spacing": [
|
||||
`error`,
|
||||
{
|
||||
"before": true, "after": true
|
||||
}
|
||||
],
|
||||
},
|
||||
"extends": `eslint:recommended`,
|
||||
"env": {
|
||||
"es6": true,
|
||||
"node": true,
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2020
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user