chore: add pre-commit checks for writting better code

This commit is contained in:
neon_arch 2023-06-01 12:25:36 +03:00
parent 662cbcf12e
commit 8dd18ebed8
5 changed files with 88 additions and 12 deletions

13
.stylelintrc.json Normal file
View file

@ -0,0 +1,13 @@
{
"extends": "stylelint-config-standard",
"rules": {
"alpha-value-notation": "number",
"selector-class-pattern": null
},
"overrides": [
{
"files": ["*.js"],
"customSyntax": "postcss-lit"
}
]
}