mirror of
https://github.com/wassname/template.git
synced 2026-06-27 18:07:31 +08:00
23 lines
641 B
JSON
23 lines
641 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }],
|
|
"no-console": ["off", { "allow": ["warn", "error"] } ],
|
|
"no-empty": ["error", { "allowEmptyCatch": true }],
|
|
"indent": [ "warn", 2 ],
|
|
"linebreak-style": [ "error", "unix" ],
|
|
"quotes": [ "warn", "single" ],
|
|
"semi": [ "warn", "always" ],
|
|
"no-extra-semi": [ "warn" ],
|
|
"no-debugger": [ "warn" ]
|
|
}
|
|
}
|