Add stricter ESLint rules

This commit is contained in:
Jesse Wierzbinski 2023-09-12 14:29:13 -10:00
parent 887128356e
commit e618996936
No known key found for this signature in database
GPG key ID: F9A1E418934E40B0
18 changed files with 102 additions and 63 deletions

9
.prettierrc Normal file
View file

@ -0,0 +1,9 @@
{
"tabWidth": 4,
"useTabs": true,
"arrowParens": "avoid",
"bracketSameLine": true,
"bracketSpacing": true,
"jsxSingleQuote": false,
"trailingComma": "es5"
}