1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

linter fixes

This commit is contained in:
Andrew Simachev 2023-08-10 11:12:43 +02:00
parent c1b1f26035
commit 0b6ed5bf4c
No known key found for this signature in database
GPG key ID: 49A163D0D14E6FD8
139 changed files with 917 additions and 898 deletions

View file

@ -22,8 +22,9 @@ module.exports = {
"semi": ["warn", "always"],
"quotes": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-multi-spaces": "warn",
"no-unsafe-optional-chaining": "warn",
"no-useless-escape": "warn",
"no-useless-escape": "off",
"no-empty": "off",
"no-fallthrough": "off",
"no-case-declarations": "off",
@ -32,7 +33,7 @@ module.exports = {
// unused vars
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
"off",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",