Skip to content

Commit

Permalink
chore(dev-deps): update @typescript-eslint (#822)
Browse files Browse the repository at this point in the history
Update `@typescript-eslint` from version 5 to 6.
  • Loading branch information
steabert authored Nov 8, 2023
1 parent aaefacc commit 169f420
Show file tree
Hide file tree
Showing 4 changed files with 77 additions and 203 deletions.
4 changes: 2 additions & 2 deletions .eslint-rules.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@ const base = {
'@typescript-eslint/no-misused-new': 'error',
/** Disallows non-null assertions using the ! postfix operator */
'@typescript-eslint/no-non-null-assertion': 'error',
/** Disallow the use of parameter properties in class constructors */
'@typescript-eslint/no-parameter-properties': 'error',
/** Disallow variable redeclaration */
'@typescript-eslint/no-redeclare': 'error',
/** Disallows invocation of require() */
Expand All @@ -210,6 +208,8 @@ const base = {
],
/** Disallow unnecessary constructors */
'@typescript-eslint/no-useless-constructor': 'error',
/** Disallow the use of parameter properties in class constructors */
'@typescript-eslint/parameter-properties': 'error',
/** Use for-of loops instead of standard for loops over arrays */
'@typescript-eslint/prefer-for-of': 'error',
/** Use function types instead of interfaces with call signatures */
Expand Down
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ tools:
just dprint fmt 'tools/src/__generated__/*'

# update a specific dependency to latest
update package:
just ncu -u {{ package }}
update *packages:
just ncu -u {{ packages }}
npm install
npm update --include-workspace-root --workspaces {{ package }}
npm update --include-workspace-root --workspaces {{ packages }}

# CI verification
verify:
Expand Down
Loading

0 comments on commit 169f420

Please sign in to comment.