Skip to content

Commit

Permalink
Bump eslint from 8.57.1 to 9.15.0 (#900)
Browse files Browse the repository at this point in the history
* Bump eslint from 8.57.1 to 9.15.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 9.15.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.1...v9.15.0)

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

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

* Update to the new eslint config format

Signed-off-by: David Thompson <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: David Thompson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: David Thompson <[email protected]>
  • Loading branch information
dependabot[bot] and datho7561 authored Nov 27, 2024
1 parent 0ed053d commit 33ec03b
Show file tree
Hide file tree
Showing 5 changed files with 242 additions and 232 deletions.
39 changes: 0 additions & 39 deletions .eslintrc.json

This file was deleted.

28 changes: 28 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
{
files: [ "src/**/*" ],
rules: {
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-inner-declarations": "off"
}
}
);

Loading

0 comments on commit 33ec03b

Please sign in to comment.