mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
31 lines
601 B
Plaintext
31 lines
601 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017,
|
|
"sourceType": "module"
|
|
},
|
|
|
|
"globals": {
|
|
"document": false,
|
|
"escape": false,
|
|
"navigator": false,
|
|
"unescape": false,
|
|
"window": false,
|
|
"describe": true,
|
|
"before": true,
|
|
"after": true,
|
|
"it": true
|
|
},
|
|
|
|
"rules": {
|
|
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
|
|
"no-trailing-spaces": 2,
|
|
"no-undef": 2,
|
|
"no-undef-init": 2
|
|
}
|
|
} |