mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add missing semicolon warning
This commit is contained in:
parent
33bbd40174
commit
15ef6bf945
1 changed files with 5 additions and 3 deletions
|
@ -61,9 +61,11 @@ rules:
|
||||||
no-floating-decimal: ["error"]
|
no-floating-decimal: ["error"]
|
||||||
no-multi-spaces: ["error"]
|
no-multi-spaces: ["error"]
|
||||||
no-multiple-empty-lines: ["error", { "max": 1 }]
|
no-multiple-empty-lines: ["error", { "max": 1 }]
|
||||||
no-redeclare: ["warn"]
|
|
||||||
no-trailing-spaces: ["error"]
|
no-trailing-spaces: ["error"]
|
||||||
|
one-var: ["error", "never"]
|
||||||
|
semi: ["warn"]
|
||||||
|
space-before-blocks: ["error"]
|
||||||
|
# TODO: Fix warnings and remove these rules
|
||||||
|
no-redeclare: ["warn"]
|
||||||
no-unused-vars: ["warn"]
|
no-unused-vars: ["warn"]
|
||||||
no-useless-escape: ["warn"]
|
no-useless-escape: ["warn"]
|
||||||
one-var: ["error", "never"]
|
|
||||||
space-before-blocks: ["error"]
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue