mirror of
https://github.com/CryptKeeperZK/ejs.git
synced 2026-01-07 22:53:52 -05:00
49 lines
917 B
JSON
49 lines
917 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"suite": "readonly",
|
|
"test": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"no-trailing-spaces": 2,
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single",
|
|
{
|
|
"avoidEscape": true,
|
|
"allowTemplateLiterals": true
|
|
}
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"comma-style": [
|
|
"error",
|
|
"last"
|
|
],
|
|
"one-var": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"no-console": 0,
|
|
"no-useless-escape": 0
|
|
}
|
|
}
|