29 lines
531 B
Plaintext
29 lines
531 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"func-names": 2,
|
|
"no-mixed-spaces-and-tabs": 2,
|
|
"quotes": [2, "single", "avoid-escape"],
|
|
"semi": 2,
|
|
"keyword-spacing": 2,
|
|
"space-before-function-paren": 2,
|
|
|
|
"curly": 0,
|
|
"consistent-return": 0,
|
|
"no-use-before-define": 0,
|
|
"no-process-exit": 0,
|
|
"strict": 0
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["mustache.js"],
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 2015
|
|
}
|
|
}
|
|
]
|
|
} |