apple2js/.eslintrc.json
Will Scullin b647b3c2bb
CFFA (#20)
* CFFA

* CFFA multi-disk and write functionaliity.

* Clean up multi-devices/partition behavior.

* ProDOS WIP

* Update against refactored codebase.

* WIP

* Wait until disks load, show progress.

* Don't wait so long to boot floppies.

* Forgot to save :|.

* Credit.
2020-01-02 11:11:04 -08:00

66 lines
1.3 KiB
JSON

{
"rules": {
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
1,
"always"
],
"no-use-before-define": [
2,
{ "functions": false }
],
"no-console": [
2,
{ "allow": ["info", "warn", "error"] }
]
},
"env": {
"builtin": true,
"browser": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "eslint:recommended",
"overrides": [
{
"files": [ "bin/*", "babel.config.js", "webpack.config.js" ],
"rules": {
"no-console": 0
},
"env": {
"node": true,
"jquery": false,
"browser": false
}
}, {
"files": [ "test/**/*"],
"env": {
"jest": true,
"node": true
},
"rules": {
"no-console": 0
}
}, {
"files": [ "js/entry2.js", "js/entry2e.js"],
"env": {
"commonjs": true
}
}
]
}