mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 13:04:30 -08:00
linter
This commit is contained in:
22
.eslintrc.json
Normal file
22
.eslintrc.json
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"parserOptions": {
|
||||
"ecmaVersion": "latest",
|
||||
"sourceType": "module"
|
||||
},
|
||||
|
||||
"env": {
|
||||
"node": true,
|
||||
"browser": true,
|
||||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"no-unsafe-finally": "off",
|
||||
"no-unused-vars": "off",
|
||||
"no-use-before-define": [2, { "functions": false , "classes": false, "variables": false}],
|
||||
"no-console": "off"
|
||||
},
|
||||
"globals": {
|
||||
"globalThis": true
|
||||
},
|
||||
"extends": "eslint:recommended"
|
||||
}
|
||||
Reference in New Issue
Block a user