Add ESLinter and update Prettier

This commit is contained in:
IvanZosimov 2023-03-01 10:46:43 +01:00
parent 7c29869aec
commit 60ca6b5332
29 changed files with 3802 additions and 1543 deletions

11
.prettierrc.js Normal file
View file

@ -0,0 +1,11 @@
// This is a reusable configuration file copied from https://github.com/actions/reusable-workflows/tree/main/reusable-configurations. Please don't make changes to this file as it's the subject of an automatic update.
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
trailingComma: 'none',
bracketSpacing: false,
arrowParens: 'avoid'
};