diff options
author | silverwind <me@silverwind.io> | 2024-06-28 18:15:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-28 16:15:51 +0000 |
commit | 08579d6cbb65399dec408f3b90bc9a9e285e6206 (patch) | |
tree | b7ac4e42f33d59ae4f7b6a33ae5c15c2b8d00e7f /web_src/js/features | |
parent | df805d6ed0458dbec258d115238fde794ed4d0ce (diff) | |
download | gitea-08579d6cbb65399dec408f3b90bc9a9e285e6206.tar.gz gitea-08579d6cbb65399dec408f3b90bc9a9e285e6206.zip |
Add initial typescript config and use it for eslint,vitest,playwright (#31186)
This enables eslint to use the typescript parser and resolver which
brings some benefits that eslint rules now have type information
available and a tsconfig.json is required for the upcoming typescript
migration as well. Notable changes done:
- Add typescript parser and resolver
- Move the vue-specific config into the root file
- Enable `vue-scoped-css/enforce-style-type` rule, there was only one
violation and I added a inline disable there.
- Fix new lint errors that were detected because of the parser change
- Update `i/no-unresolved` to remove now-unnecessary workaround for the
resolver
- Disable `i/no-named-as-default` as it seems to raise bogus issues in
the webpack config
- Change vitest config to typescript
- Change playwright config to typescript
- Add `eslint-plugin-playwright` and fix issues
- Add `tsc` linting to `make lint-js`
Diffstat (limited to 'web_src/js/features')
-rw-r--r-- | web_src/js/features/repo-code.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/features/repo-code.js b/web_src/js/features/repo-code.js index 7c74c253a2..f0f4ead125 100644 --- a/web_src/js/features/repo-code.js +++ b/web_src/js/features/repo-code.js @@ -153,7 +153,7 @@ export function initRepoCodeView() { }); $(window).on('hashchange', () => { - let m = window.location.hash.match(rangeAnchorRegex); + let m = rangeAnchorRegex.exec(window.location.hash.match); const $linesEls = $(getLineEls()); let $first; if (m) { @@ -170,7 +170,7 @@ export function initRepoCodeView() { return; } } - m = window.location.hash.match(singleAnchorRegex); + m = singleAnchorRegex.exec(window.location.hash.match); if (m) { $first = $linesEls.filter(`[rel=L${m[2]}]`); if ($first.length) { |