Skip to content

Commit

Permalink
chore: code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Plumbiu committed Nov 28, 2023
1 parent dbb412a commit 7019504
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
5 changes: 3 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "@plumbiu",
"extends": ["@plumbiu", "prettier"],
"rules": {
"import/named": 0
"import/named": 0,
"import/no-duplicates": 0
}
}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"cz-git": "^1.7.1",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"esno": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
Expand Down Expand Up @@ -58,8 +59,8 @@
"pnpm": ">=6"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint"
"*.{js,ts}": [
"eslint --fix"
]
}
}
11 changes: 1 addition & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,5 @@
"types": ["node"],
"rootDir": "."
},
"ts-node": {
"esm": true,
},
"include": [
"packages/**/*.ts",
"scripts/*.ts",
"packages/web/**/*.vue",
"playground/**/*.vue",
"playground/**/*.ts"
]
"include": ["**/*.ts", "**/*.vue"]
}

0 comments on commit 7019504

Please sign in to comment.