Skip to content

Commit

Permalink
chore(deps-dev): bump eslint from 8.57.0 to 9.1.1 in the major-dev-de…
Browse files Browse the repository at this point in the history
…pendencies group across 1 directory (#82)

* chore(deps-dev): bump eslint

Bumps the major-dev-dependencies group with 1 update in the / directory: [eslint](https://github.com/eslint/eslint).


Updates `eslint` from 8.57.0 to 9.1.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.1.1)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: update eslint configuration for v9 compatibility

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dustin-jw <[email protected]>
  • Loading branch information
dependabot[bot] and dustin-jw authored Apr 29, 2024
1 parent 234b224 commit 9d1aebc
Show file tree
Hide file tree
Showing 4 changed files with 133 additions and 517 deletions.
12 changes: 0 additions & 12 deletions .eslintrc.js

This file was deleted.

20 changes: 20 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
const globals = require('globals');
const js = require('@eslint/js');

module.exports = [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
...globals.browser,
...globals.node,
...globals.es2021,
},
},
},
{
ignores: ['node_modules', 'dist'],
},
];
Loading

0 comments on commit 9d1aebc

Please sign in to comment.