1
mirror of https://github.com/valentineus/iii-for-vk.git synced 2025-12-21 14:23:21 +04:00
Files
iii-for-vk/.eslintrc.json

28 lines
473 B
JSON
Raw Permalink Normal View History

2017-06-05 10:51:29 +00:00
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}