Skip to content

Commit

Permalink
Merge pull request #4 from wozjac/dependabot/npm_and_yarn/eslint-9.5.0
Browse files Browse the repository at this point in the history
build(deps-dev): bump eslint from 7.26.0 to 9.5.0
  • Loading branch information
wozjac authored Jun 19, 2024
2 parents 6858175 + e7a51a8 commit 3e24849
Show file tree
Hide file tree
Showing 6 changed files with 775 additions and 751 deletions.
24 changes: 0 additions & 24 deletions config/.eslintrc.json

This file was deleted.

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

export default [
{
ignores: ["node_modules/**", "dist/**", "coverage/**"],
},
js.configs.recommended,
{
languageOptions: {
ecmaVersion: "latest",
globals: {
...globals.browser,
...globals.commonjs,
...globals.jquery,
...globals.mocha,
},
sourceType: "module",
},
rules: {
quotes: ["error", "double"],
semi: ["error", "always"],
},
},
];
Loading

0 comments on commit 3e24849

Please sign in to comment.