This commit is contained in:
Grol Grol 2025-04-27 04:18:56 +03:00
parent d4e23856c1
commit 400ce20193
2 changed files with 4 additions and 3 deletions

View file

@ -6,5 +6,5 @@ charset = utf-8
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
indent_style = tab indent_style = tab
indent_size = 4 indent_size = 2
tab_width = 4 tab_width = 2

View file

@ -18,6 +18,7 @@
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
"@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-ts-comment": "off",
"no-prototype-builtins": "off", "no-prototype-builtins": "off",
"@typescript-eslint/no-empty-function": "off" "@typescript-eslint/no-empty-function": "off",
"indent": ["error", 2]
} }
} }