0
mirror of https://github.com/valentineus/iii-client.git synced 2025-05-15 04:11:17 +03:00
iii-client/.eslintrc.json

28 lines
473 B
JSON
Raw Normal View History

2017-07-29 04:39:18 +04:00
{
2017-05-29 07:02:09 +03:00
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
2017-07-29 04:39:18 +04:00
"parserOptions": {
"sourceType": "module"
},
2017-05-29 07:02:09 +03:00
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
2017-07-29 04:39:18 +04:00
}