2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 15:18:24 +00:00
books/.eslintrc

32 lines
621 B
Plaintext
Raw Normal View History

2018-01-01 14:57:59 +05:30
{
"env": {
"browser": true,
"es6": true,
"node": true
2018-01-02 15:40:32 +05:30
},
2018-01-02 15:40:32 +05:30
"parserOptions": {
2018-01-30 17:33:04 +05:30
"ecmaVersion": 2017,
"sourceType": "module"
},
"globals": {
"document": false,
"escape": false,
"navigator": false,
"unescape": false,
"window": false,
"describe": true,
"before": true,
2018-02-08 15:08:47 +05:30
"after": true,
"it": true,
"io": true
},
"rules": {
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
"no-trailing-spaces": 2,
"no-undef": 2,
"no-undef-init": 2
2018-01-01 17:47:51 +05:30
}
2018-01-01 14:57:59 +05:30
}