Skip to content

Commit

Permalink
chore(deps-dev): bump eslint from 8.57.0 to 9.3.0 (#324)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump eslint from 8.57.0 to 9.3.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.3.0.
- [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.3.0)

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

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

* adding flat config file

* removing old config files

* removing export

* attempting something

* chore: configured eslint

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom Arra <[email protected]>
Co-authored-by: Alejandro Santiago <[email protected]>
  • Loading branch information
3 people authored May 28, 2024
1 parent 930e31f commit cbe0d6d
Show file tree
Hide file tree
Showing 5 changed files with 672 additions and 355 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc.json

This file was deleted.

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

module.exports = [
{
files: ['*.js'],
ignores: ['eslint.config.js'],
rules: {
...globals.rules,
...js.configs.recommended.rules,
},
languageOptions: {
globals: { ...globals.node, ...jest.environments.globals.globals },
},
},
];
Loading

0 comments on commit cbe0d6d

Please sign in to comment.