Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed Apr 27, 2024
1 parent 06f36ea commit 8854731
Show file tree
Hide file tree
Showing 7 changed files with 228 additions and 337 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

25 changes: 0 additions & 25 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions clean-scripts.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ export default {
...workspaces.map((d) => `node packages/cli/dist/index.js -p ${d.path}/src --detail --strict --suppressError`)
],
lint: {
ts: `eslint --ext .js,.ts ${tsFiles}`,
ts: `eslint ${tsFiles}`,
markdown: `markdownlint README.md`
},
test: [],
fix: `eslint --ext .js,.ts ${tsFiles} --fix`
fix: `eslint ${tsFiles} --fix`
}
13 changes: 13 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import eslint from '@eslint/js'
import tseslint from 'typescript-eslint'

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
ignores: [
'node_modules',
'*.d.ts'
]
}
)
11 changes: 4 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,17 @@
"license": "MIT",
"devDependencies": {
"@types/minimist": "1.2.5",
"@types/node": "20.11.21",
"@types/node": "20.12.7",
"@types/normalize-path": "3.0.2",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"clean-release": "2.18.0",
"clean-scripts": "1.21.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-plantain": "2.0.0",
"eslint": "9.1.1",
"markdownlint-cli": "0.39.0",
"rimraf": "5.0.5",
"tsconfig-plantain": "0.0.2",
"tsx": "3.12.10",
"typescript": "5.4.2",
"typescript": "5.4.5",
"typescript-eslint": "7.7.1",
"vscode": "1.1.37"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"ts-plugin-type-coverage": "^2.18.2"
},
"devDependencies": {
"typescript": "5.3.3"
"typescript": "5.4.5"
},
"keywords": [
"type",
Expand Down
Loading

0 comments on commit 8854731

Please sign in to comment.