setup tailwind + lint and format from root

This commit is contained in:
MapleLeaf
2021-12-29 15:10:54 -06:00
parent 1b4cedd857
commit 5e88509973
15 changed files with 301 additions and 138 deletions

17
.eslintrc.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": ["./node_modules/@itsmapleleaf/configs/eslint"],
"ignorePatterns": [
"**/node_modules/**",
"**/.cache/**",
"**/build/**",
"**/dist/**",
"**/coverage/**"
],
"parserOptions": {
"project": "./tsconfig.base.json"
},
"rules": {
"import/no-unused-modules": "off",
"unicorn/prevent-abbreviations": "off"
}
}