diff options
author | silverwind <me@silverwind.io> | 2020-05-24 09:36:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-24 08:36:40 +0100 |
commit | 3761bdb640f1aeb9c68b3b491640eb9b0f9f9b0e (patch) | |
tree | c8581fdb1492fe0b2c5a9b9083fbe9648166d530 /.eslintrc | |
parent | 8d9f9c32370cc7c45db55ba35e2b9ab707f5266a (diff) | |
download | gitea-3761bdb640f1aeb9c68b3b491640eb9b0f9f9b0e.tar.gz gitea-3761bdb640f1aeb9c68b3b491640eb9b0f9f9b0e.zip |
Fix serviceworker output file and misc improvements (#11562)
* Fix serviceworker output file and misc improvements
- Fix output file location for production build
- Cache more asset types: fonts and worker variants
- Parallelize a few tasks during initalization
- Only invalidate caches starting with our prefix
- Remove public/serviceworker.js before building
- Remove font preloads, they cause strange cors issues
- Misc eslint config adjustments
* remove webpack output files on watch-frontend
Diffstat (limited to '.eslintrc')
-rw-r--r-- | .eslintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,7 +25,7 @@ globals: Tribute: false overrides: - - files: ["web_src/**/*.worker.js"] + - files: ["web_src/**/*.worker.js", "web_src/js/serviceworker.js"] env: worker: true rules: @@ -58,6 +58,7 @@ rules: no-restricted-syntax: [0] no-return-await: [0] no-shadow: [0] + no-underscore-dangle: [0] no-unused-vars: [2, {args: all, argsIgnorePattern: ^_, varsIgnorePattern: ^_, ignoreRestSiblings: true}] no-use-before-define: [0] no-var: [2] |