diff options
author | silverwind <me@silverwind.io> | 2022-07-15 11:38:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-15 17:38:18 +0800 |
commit | 4c0fce8f7b3ec185ca34e301fb67bf2d28d972d4 (patch) | |
tree | 928012fd19d7806b265bb096f6e5bcd68ba25e85 /templates/repo | |
parent | e35a39e81d9ef548b17612b6441951eb08b4345e (diff) | |
download | gitea-4c0fce8f7b3ec185ca34e301fb67bf2d28d972d4.tar.gz gitea-4c0fce8f7b3ec185ca34e301fb67bf2d28d972d4.zip |
Fix eslint parsing errors, remove eslint-plugin-html (#20323)
Introduce a separate .eslintrc in the Vue components folder to
selectively enable vue-eslint-parser there, so that the rest of the
files can use eslint's core parser which can deal with hashbangs.
The fact that the eslint-disable comments worked in HTML was a
unintended side-effect of the files being parsed via vue-eslint-parser,
so I had to disable the parsing of these files in .eslintrc.yaml to make
it work, and finally decided to remove eslint-plugin-html as it causes
more issues than it solves.
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/issue/view_content/pull.tmpl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/templates/repo/issue/view_content/pull.tmpl b/templates/repo/issue/view_content/pull.tmpl index 60fe667a54..be2c8f0c0e 100644 --- a/templates/repo/issue/view_content/pull.tmpl +++ b/templates/repo/issue/view_content/pull.tmpl @@ -340,7 +340,6 @@ {{end}} <div class="ui divider"></div> <script> - <!-- /* eslint-disable */ --> (() => { const defaultMergeTitle = {{.DefaultMergeMessage}}; const defaultSquashMergeTitle = {{.DefaultSquashMergeMessage}}; |