mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
bb09a1ec33
Stop stringifying opcodes during runtime and only do so upon inspection. Moves all the debugging logic to a common place to allow building an interface.
114 lines
2.4 KiB
JSON
114 lines
2.4 KiB
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint/eslint-plugin"],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"prefer-const": [
|
|
"error"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-use-before-define": "off",
|
|
"@typescript-eslint/no-use-before-define": [
|
|
"error",
|
|
{
|
|
"functions": false,
|
|
"classes": false
|
|
}
|
|
],
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{
|
|
"argsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"no-redeclare": "off",
|
|
"@typescript-eslint/no-redeclare": ["error"],
|
|
"no-dupe-class-members": "off",
|
|
"no-console": [
|
|
"error",
|
|
{
|
|
"allow": [
|
|
"info",
|
|
"warn",
|
|
"error"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"env": {
|
|
"builtin": true,
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"**/*.ts"
|
|
],
|
|
"rules": {
|
|
"no-var": "error"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"bin/*",
|
|
"babel.config.js",
|
|
"webpack.config.js"
|
|
],
|
|
"rules": {
|
|
"no-console": 0
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"jquery": false,
|
|
"browser": false
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"test/**/*"
|
|
],
|
|
"env": {
|
|
"jest": true,
|
|
"jasmine": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"no-console": 0
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"js/entry2.js",
|
|
"js/entry2e.js",
|
|
"jest.config.js"
|
|
],
|
|
"env": {
|
|
"commonjs": true
|
|
}
|
|
}
|
|
]
|
|
}
|