Skip to content

Commit

Permalink
chore(deps-dev): bump the lint group with 2 updates (#397)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump the lint group with 2 updates

Bumps the lint group with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser).


Updates `@typescript-eslint/eslint-plugin` from 7.18.0 to 8.0.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.0.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.18.0 to 8.0.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.0.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Michael Cousins <[email protected]>
  • Loading branch information
dependabot[bot] and mcous committed Aug 3, 2024
1 parent 48ecc0b commit 574c1e4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
10 changes: 1 addition & 9 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
es6: true,
},
extends: ['standard', 'plugin:svelte/recommended', 'prettier'],
plugins: ['svelte', 'simple-import-sort', 'json-files'],
plugins: ['svelte', 'simple-import-sort'],
rules: {
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
Expand All @@ -31,14 +31,6 @@ module.exports = {
'plugin:@typescript-eslint/stylistic',
'prettier',
],
rules: {
'@typescript-eslint/ban-types': [
'error',
{ types: { '{}': false }, extendDefaults: true },
],
'@typescript-eslint/no-explicit-any': 'off',
'import/export': 'off',
},
},
],
parserOptions: {
Expand Down
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ updates:
versions: ['>=9']
- dependency-name: 'eslint-plugin-n'
versions: ['>=17']
- dependency-name: 'eslint-plugin-promise'
versions: ['>=7']

# Update GitHub Actions dependencies
- package-ecosystem: 'github-actions'
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,15 @@
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/user-event": "^14.5.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.2",
"all-contributors-cli": "^6.26.1",
"doctoc": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json-files": "^4.1.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
Expand Down
1 change: 1 addition & 0 deletions src/__tests__/types.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ describe('types', () => {
expectTypeOf(subject.fireEvent.click).toMatchTypeOf<
(
element: Element | Node | Document | Window,
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
options?: {}
) => Promise<boolean>
>()
Expand Down

0 comments on commit 574c1e4

Please sign in to comment.