apple2js/.eslintrc.json

31 lines
502 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,
2019-03-01 05:21:18 +00:00
"jquery": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
2016-11-22 05:17:34 +00:00
},
"extends": "eslint:recommended"
}