chore(web): ignore eslint warnings (#662)

* enhancement(web): styled scrollbars for listboxes

* chore(web): fix eslint warnings

* Revert "enhancement(web): styled scrollbars for listboxes"

This reverts commit 6b4a28baa6b560044799f31927a3acb88d2b65d6.
This commit is contained in:
martylukyy 2023-01-28 17:04:30 +01:00 committed by GitHub
parent 27c23df46d
commit 2d2ddb45bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View file

@ -65,6 +65,9 @@ module.exports = {
"@typescript-eslint/keyword-spacing": ["error"],
"object-curly-spacing": "off",
"@typescript-eslint/object-curly-spacing": ["warn", "always"],
// We have quite some "Unexpected any. Specify a different type" warnings.
// This disables these warnings since they are false positives afaict.
"@typescript-eslint/no-explicit-any": "off"
},
},
],