apple2js/.eslintrc.json

27 lines
420 B
JSON
Raw Normal View History

2016-11-22 05:17:34 +00:00
{
"rules": {
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
2016-11-22 05:17:34 +00:00
]
},
"env": {
"builtin": true,
2016-11-22 05:17:34 +00:00
"browser": true,
"jquery": true
},
"extends": "eslint:recommended"
}