5268c5d1bc
* Rename MediaUtility to MediaUtil for consistency * Update variable names * Rename media-utility.js to media-util.js * Rename ProfileConditions to ProfileConditionsUtil * Rename variables * Move profile-conditions.js to profile-conditions-util.js * Rename test-profile-conditions.js to test-profile-conditions-util.js
202 lines
7.3 KiB
JSON
202 lines
7.3 KiB
JSON
{
|
|
"root": true,
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "script"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es2017": true,
|
|
"webextensions": true
|
|
},
|
|
"plugins": ["no-unsanitized"],
|
|
"ignorePatterns": [
|
|
"/ext/lib/"
|
|
],
|
|
"rules": {
|
|
"arrow-parens": ["error", "always"],
|
|
"comma-dangle": ["error", "never"],
|
|
"curly": ["error", "all"],
|
|
"dot-notation": "error",
|
|
"eqeqeq": "error",
|
|
"func-names": ["error", "always"],
|
|
"guard-for-in": "error",
|
|
"new-parens": "error",
|
|
"no-case-declarations": "error",
|
|
"no-const-assign": "error",
|
|
"no-constant-condition": "off",
|
|
"no-global-assign": "error",
|
|
"no-param-reassign": "off",
|
|
"no-prototype-builtins": "error",
|
|
"no-shadow": ["error", {"builtinGlobals": false}],
|
|
"no-undef": "error",
|
|
"no-undefined": "error",
|
|
"no-underscore-dangle": ["error", {"allowAfterThis": true, "allowAfterSuper": false, "allowAfterThisConstructor": false}],
|
|
"no-unexpected-multiline": "error",
|
|
"no-unneeded-ternary": "error",
|
|
"no-unused-vars": ["error", {"vars": "local", "args": "after-used", "argsIgnorePattern": "^_", "caughtErrors": "none"}],
|
|
"no-unused-expressions": "error",
|
|
"no-var": "error",
|
|
"prefer-const": ["error", {"destructuring": "all"}],
|
|
"quote-props": ["error", "consistent"],
|
|
"quotes": ["error", "single", "avoid-escape"],
|
|
"require-atomic-updates": "off",
|
|
"semi": "error",
|
|
"wrap-iife": ["error", "inside"],
|
|
|
|
"brace-style": ["error", "1tbs", {"allowSingleLine": true}],
|
|
"indent": ["error", 4, {"SwitchCase": 1, "MemberExpression": 1, "flatTernaryExpressions": true, "ignoredNodes": ["ConditionalExpression"]}],
|
|
"object-curly-newline": "error",
|
|
"padded-blocks": ["error", "never"],
|
|
|
|
"array-bracket-spacing": ["error", "never"],
|
|
"arrow-spacing": ["error", {"before": true, "after": true}],
|
|
"block-spacing": ["error", "always"],
|
|
"comma-spacing": ["error", { "before": false, "after": true }],
|
|
"computed-property-spacing": ["error", "never"],
|
|
"func-call-spacing": ["error", "never"],
|
|
"function-paren-newline": ["error", "multiline-arguments"],
|
|
"generator-star-spacing": ["error", "before"],
|
|
"key-spacing": ["error", {"beforeColon": false, "afterColon": true, "mode": "strict"}],
|
|
"keyword-spacing": ["error", {"before": true, "after": true}],
|
|
"no-trailing-spaces": "error",
|
|
"no-whitespace-before-property": "error",
|
|
"object-curly-spacing": ["error", "never"],
|
|
"rest-spread-spacing": ["error", "never"],
|
|
"semi-spacing": ["error", {"before": false, "after": true}],
|
|
"space-before-function-paren": ["error", {
|
|
"anonymous": "never",
|
|
"named": "never",
|
|
"asyncArrow": "always"
|
|
}],
|
|
"space-in-parens": ["error", "never"],
|
|
"space-unary-ops": "error",
|
|
"spaced-comment": ["error", "always"],
|
|
"switch-colon-spacing": ["error", {"after": true, "before": false}],
|
|
"template-curly-spacing": ["error", "never"],
|
|
"template-tag-spacing": ["error", "never"],
|
|
|
|
"no-unsanitized/method": "error",
|
|
"no-unsanitized/property": "error"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"ext/js/core.js",
|
|
"ext/js/templates/template-renderer.js",
|
|
"ext/js/language/dictionary-data-util.js"
|
|
],
|
|
"env": {
|
|
"webextensions": false
|
|
}
|
|
},
|
|
{
|
|
"files": ["ext/**/*.js"],
|
|
"excludedFiles": [
|
|
"ext/js/core.js",
|
|
"ext/js/templates/template-renderer.js",
|
|
"ext/js/data/anki-note-data.js",
|
|
"ext/js/language/dictionary-data-util.js"
|
|
],
|
|
"globals": {
|
|
"serializeError": "readonly",
|
|
"deserializeError": "readonly",
|
|
"isObject": "readonly",
|
|
"stringReverse": "readonly",
|
|
"promiseTimeout": "readonly",
|
|
"escapeRegExp": "readonly",
|
|
"deferPromise": "readonly",
|
|
"clone": "readonly",
|
|
"deepEqual": "readonly",
|
|
"generateId": "readonly",
|
|
"promiseAnimationFrame": "readonly",
|
|
"DynamicProperty": "readonly",
|
|
"EventDispatcher": "readonly",
|
|
"EventListenerCollection": "readonly"
|
|
}
|
|
},
|
|
{
|
|
"files": ["ext/**/*.js"],
|
|
"excludedFiles": [
|
|
"ext/js/core.js",
|
|
"ext/js/yomichan.js"
|
|
],
|
|
"globals": {
|
|
"yomichan": "readonly"
|
|
}
|
|
},
|
|
{
|
|
"files": ["ext/js/yomichan.js"],
|
|
"globals": {
|
|
"chrome": "writable"
|
|
}
|
|
},
|
|
{
|
|
"files": ["ext/js/settings/modal-jquery.js"],
|
|
"env": {
|
|
"jquery": true
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"test/**/*.js",
|
|
"dev/**/*.js"
|
|
],
|
|
"excludedFiles": ["test/data/html/*.js"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 8,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": false,
|
|
"es2017": true,
|
|
"node": true,
|
|
"webextensions": false
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"ext/js/core.js",
|
|
"ext/js/yomichan.js",
|
|
"ext/js/background/environment.js",
|
|
"ext/js/language/japanese-util.js",
|
|
"ext/js/general/cache-map.js",
|
|
"ext/js/language/dictionary-data-util.js",
|
|
"ext/js/general/object-property-accessor.js",
|
|
"ext/js/comm/anki.js",
|
|
"ext/js/media/audio-downloader.js",
|
|
"ext/js/comm/clipboard-monitor.js",
|
|
"ext/js/comm/clipboard-reader.js",
|
|
"ext/js/data/database.js",
|
|
"ext/js/language/deinflector.js",
|
|
"ext/js/language/dictionary-database.js",
|
|
"ext/js/data/json-schema.js",
|
|
"ext/js/comm/mecab.js",
|
|
"ext/js/media/media-util.js",
|
|
"ext/js/data/options-util.js",
|
|
"ext/js/data/permissions-util.js",
|
|
"ext/js/background/profile-conditions-util.js",
|
|
"ext/js/background/request-builder.js",
|
|
"ext/js/dom/simple-dom-parser.js",
|
|
"ext/js/templates/template-patcher.js",
|
|
"ext/js/general/text-source-map.js",
|
|
"ext/js/language/translator.js",
|
|
"ext/js/background/backend.js",
|
|
"ext/js/background/background-main.js"
|
|
],
|
|
"env": {
|
|
"browser": false,
|
|
"serviceworker": true,
|
|
"es2017": true,
|
|
"webextensions": true
|
|
},
|
|
"globals": {
|
|
"FileReader": "readonly",
|
|
"Intl": "readonly",
|
|
"crypto": "readonly"
|
|
}
|
|
}
|
|
]
|
|
}
|