This commit is contained in:
Sebastian Seedorf
2022-08-18 09:20:00 +02:00
parent 92b762bbd2
commit de95f57b18
60 changed files with 3450 additions and 994 deletions

12
.lintstagedrc Normal file
View File

@@ -0,0 +1,12 @@
{
"(!cypress)/**/*.+(ts|tsx)": [
"tsc-files --noEmit"
],
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --write --loglevel warn",
"eslint --fix"
],
"**/*.{css,scss,less}": [
"stylelint --fix"
]
}