mirror of
https://github.com/wassname/template.git
synced 2026-06-27 16:47:30 +08:00
20 lines
509 B
JSON
20 lines
509 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"] } ],
|
|
"indent": [ "warn", 2 ],
|
|
"linebreak-style": [ "error", "unix" ],
|
|
"quotes": [ "warn", "single" ],
|
|
"semi": [ "warn", "always" ]
|
|
}
|
|
}
|