1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #1253 from MrTimscampi/lint-operators

Force spacing around operators
This commit is contained in:
dkanada 2020-05-18 19:27:31 +09:00 committed by GitHub
commit 409da485cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 8 deletions

View file

@ -42,7 +42,8 @@ module.exports = {
'one-var': ["error", "never"], 'one-var': ["error", "never"],
'quotes': ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }], 'quotes': ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
'semi': ["error"], 'semi': ["error"],
'space-before-blocks': ["error"] 'space-before-blocks': ["error"],
"space-infix-ops": "error"
}, },
overrides: [ overrides: [
{ {