Skip to content

Commit

Permalink
Bump eslint from 8.57.0 to 9.4.0 (#660)
Browse files Browse the repository at this point in the history
* Bump eslint from 8.57.0 to 9.4.0

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

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

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

* eslint upgrade fixes

Signed-off-by: Zabil Cheriya Maliackal <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Zabil Cheriya Maliackal <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Zabil Cheriya Maliackal <[email protected]>
  • Loading branch information
dependabot[bot] and zabil authored Jun 14, 2024
1 parent a38049d commit f35d9fb
Show file tree
Hide file tree
Showing 5 changed files with 211 additions and 203 deletions.
35 changes: 0 additions & 35 deletions .eslintrc.json

This file was deleted.

38 changes: 38 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import mocha from "eslint-plugin-mocha";

export default [
{
plugins: {
mocha
},
languageOptions: {
ecmaVersion: 8,
globals: {
node: true,
es6: true,
mocha: true
}
},
rules: {
curly: "error",
indent: [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"mocha/no-exclusive-tests": "error",
"no-console": "off",
quotes: [
"error",
"double"
],
semi: [
"error",
"always"
]
}
}
];
Loading

0 comments on commit f35d9fb

Please sign in to comment.