Skip to content

Commit

Permalink
Update dev dependencies (#137); Bump memfs to 4.9.2; Bump eslint to 9…
Browse files Browse the repository at this point in the history
….3.0

* Bump memfs from 4.7.0 to 4.9.2

Bumps [memfs](https://github.com/streamich/memfs) from 4.7.0 to 4.9.2.
- [Release notes](https://github.com/streamich/memfs/releases)
- [Changelog](https://github.com/streamich/memfs/blob/master/CHANGELOG.md)
- [Commits](streamich/memfs@v4.7.0...v4.9.2)

---
updated-dependencies:
- dependency-name: memfs
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

* Bump eslint from 8.56.0 to 9.3.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.56.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.56.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]>

* update eslint config to flat config file

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
markpatterson27 and dependabot[bot] authored May 25, 2024
1 parent eb93d74 commit dbca29e
Show file tree
Hide file tree
Showing 5 changed files with 201 additions and 236 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

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

This file was deleted.

22 changes: 22 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// eslint.config.js
export default [
{
files: ["src/**/*.js", "tests/**/*.js"],
ignores: [
"node_modules/**",
"dist/**"
],
languageOptions: {
sourceType: "commonjs", // Add sourceType option
ecmaVersion: 2022,
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly"
},
parserOptions: {
}
},
rules: {
}
}
];
Loading

0 comments on commit dbca29e

Please sign in to comment.