pompy.dev/apps/portfolio/.eslintrc
developomp 002fb4bea7 refactor: tidy up tailwind configs
- add tailwind to all apps
- share tailwind themes and stuff
2023-07-02 10:56:12 +09:00

31 lines
731 B
Text

{
"root": true,
"env": {
"browser": true,
"node": true,
"es2020": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react-refresh",
"prettier",
"simple-import-sort"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"rules": {
"react-refresh/only-export-components": "warn",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error"
}
}