Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>

* Use flat config.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marc Görtz <mail@marcgoertz.de>
  • Loading branch information
dependabot[bot] and mrcgrtz committed May 2, 2024
1 parent 9fa8606 commit b0aaa78
Show file tree
Hide file tree
Showing 5 changed files with 231 additions and 231 deletions.
12 changes: 0 additions & 12 deletions .eslintrc.cjs

This file was deleted.

15 changes: 15 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import js from "@eslint/js";
import globals from "globals";
import jQueryConfig from "eslint-config-jquery";

/** @type {import('eslint').Linter.Config} */
export default {
...js.configs.recommended,
...jQueryConfig,
languageOptions: {
globals: {
...globals.browser,
...globals.jquery
}
}
};
2 changes: 1 addition & 1 deletion jquery.externalize.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-env node */
/* global require, global -- Globals defined by Node */
var test = require( "ava" );
var JSDOM = require( "jsdom" ).JSDOM;

Expand Down
Loading

0 comments on commit b0aaa78

Please sign in to comment.