Skip to content

Commit

Permalink
Update dependencies for April 2024 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous authored Apr 8, 2024
1 parent efa71f4 commit a6efc6a
Show file tree
Hide file tree
Showing 7 changed files with 487 additions and 517 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@
"@viamrobotics/typescript-config": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/semver": "^7.5.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@types/node": "^20.12.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-jest-dom": "^5.2.0",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-tailwindcss": "^3.14.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-vitest": "^0.3.20",
"prettier": "^3.2.4",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"semver": "^7.5.4",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-vitest": "^0.4.1",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.13",
"semver": "^7.6.0",
"typescript": "^5.4.4",
"vitest": "^1.4.0"
},
"pnpm": {
"peerDependencyRules": {
Expand Down
5 changes: 4 additions & 1 deletion packages/eslint-config/base.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ module.exports = {
{ ignoreArrowShorthand: true },
],
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': [
'warn',
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
],
'@typescript-eslint/no-use-before-define': [
'warn',
{
Expand Down
12 changes: 6 additions & 6 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"access": "public"
},
"version": "0.4.0",
"version": "0.4.1",
"description": "Common ESLint configuration for Viam projects.",
"files": [
"**/*",
Expand Down Expand Up @@ -41,17 +41,17 @@
],
"license": "Apache-2.0",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=6 <7",
"@typescript-eslint/parser": ">=6 <7",
"@typescript-eslint/eslint-plugin": ">=6 <8",
"@typescript-eslint/parser": ">=6 <8",
"eslint": ">=8 <9",
"eslint-config-prettier": ">=9 <10",
"eslint-plugin-jest-dom": ">=5 <6",
"eslint-plugin-sonarjs": ">=0.19 <0.24",
"eslint-plugin-sonarjs": ">=0.19 <0.26",
"eslint-plugin-svelte": ">=2 <3",
"eslint-plugin-tailwindcss": ">=3 <4",
"eslint-plugin-testing-library": ">=6 <7",
"eslint-plugin-unicorn": ">=47 <51",
"eslint-plugin-vitest": ">=0.3 <0.4"
"eslint-plugin-unicorn": ">=47 <53",
"eslint-plugin-vitest": ">=0.3 <0.5"
},
"peerDependenciesMeta": {
"eslint-plugin-jest-dom": {
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"types": ["node"],
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"outDir": "dist"
},
"include": ["**/*.cjs"],
"include": ["**/*.cjs"]
}
4 changes: 2 additions & 2 deletions packages/prettier-config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"types": ["node"],
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"outDir": "dist"
},
"include": ["**/*.cjs"],
"include": ["**/*.cjs"]
}
Loading

0 comments on commit a6efc6a

Please sign in to comment.