feat: consistent linter & formatter config

This commit is contained in:
ae 2024-09-07 16:58:19 +03:00
parent 638a753a13
commit 43abe66003
Signed by: ae
GPG Key ID: 995EFD5C1B532B3E

View File

@ -9,7 +9,8 @@
"rules": {
"quotes": ["warn", "double"],
"semi": ["warn", "never"],
"indent": ["warn", 4],
"prettier/prettier": 0
"indent": ["warn", 2],
"prettier/prettier": 0,
"no-unused-vars": ["warn", { "argsIgnorePAttern": "^_" }]
}
}