summaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-14 20:25:41 -0500
committerGitHub <noreply@github.com>2021-02-14 20:25:41 -0500
commitd6332d2bc723f9aa60f2c886564bef49a6b91b84 (patch)
treea86c90cdc02f5a7d6633f69e48f3b9d289b61130 /.eslintrc.json
parentd97c84f8ac1ac3dc6e058057aa7a4ad5c54930ac (diff)
Test html script ordering (#1396)
* Simplify getAllFiles * Add test to validate script order * Update script include order * Update content script order * Update sw.js and corresponding lint * Update manifest
Diffstat (limited to '.eslintrc.json')
-rw-r--r--.eslintrc.json26
1 files changed, 13 insertions, 13 deletions
diff --git a/.eslintrc.json b/.eslintrc.json
index e17c63df..8f8dc4e9 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -166,30 +166,30 @@
"files": [
"ext/js/core.js",
"ext/js/yomichan.js",
+ "ext/js/background/backend.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/background/profile-conditions-util.js",
+ "ext/js/background/request-builder.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/comm/mecab.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/cache-map.js",
+ "ext/js/general/object-property-accessor.js",
"ext/js/general/text-source-map.js",
+ "ext/js/language/deinflector.js",
+ "ext/js/language/dictionary-data-util.js",
+ "ext/js/language/dictionary-database.js",
+ "ext/js/language/japanese-util.js",
"ext/js/language/translator.js",
- "ext/js/background/backend.js",
+ "ext/js/media/audio-downloader.js",
+ "ext/js/media/media-util.js",
+ "ext/js/templates/template-patcher.js",
"ext/js/background/background-main.js"
],
"env": {