summaryrefslogtreecommitdiffstats
path: root/.eslintrc.yaml
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-02-08 03:37:09 +0100
committerGitHub <noreply@github.com>2024-02-08 02:37:09 +0000
commitb6bf8041d8e8ee845728687b1f358f1d482afff2 (patch)
tree85e8359535c8b66be0f26a780577f55bfb4eb7ac /.eslintrc.yaml
parenta4859dcfea0cf1c7818f3cb2dcbb6b83902cc9d5 (diff)
downloadgitea-b6bf8041d8e8ee845728687b1f358f1d482afff2.tar.gz
gitea-b6bf8041d8e8ee845728687b1f358f1d482afff2.zip
Fix gitea-origin-url with default ports (#29085)
When setting `url.host` on a URL object with no port specified (like is the case of default port), the resulting URL's port will not change. Workaround this quirk in the URL standard by explicitely setting port for the http and https protocols. Extracted the logic to a function for the purpose of testing. Initially I wanted to have the function in utils.js, but it turns out esbuild can not treeshake the unused functions which would result in the webcomponents chunk having all 2kB utils.js inlined, so it seemed not worth. Fixes: https://github.com/go-gitea/gitea/issues/29084
Diffstat (limited to '.eslintrc.yaml')
-rw-r--r--.eslintrc.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.eslintrc.yaml b/.eslintrc.yaml
index 78042a7598..fc6f38ec53 100644
--- a/.eslintrc.yaml
+++ b/.eslintrc.yaml
@@ -811,7 +811,7 @@ rules:
wc/no-constructor-params: [2]
wc/no-constructor: [2]
wc/no-customized-built-in-elements: [2]
- wc/no-exports-with-element: [2]
+ wc/no-exports-with-element: [0]
wc/no-invalid-element-name: [2]
wc/no-invalid-extends: [2]
wc/no-method-prefixed-with-on: [2]