chore: added eslint and prettier linting

This commit is contained in:
2026-04-26 23:21:43 +03:30
parent 8134911e17
commit 1c92f28a5f
4 changed files with 906 additions and 1 deletions

7
prettier.config.js Normal file
View File

@@ -0,0 +1,7 @@
export default {
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
printWidth: 80,
};