Skip to content

Commit

Permalink
Merge pull request #80 from coliff/dev/coliff/eslint-9-update
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff authored Apr 8, 2024
2 parents 7ebc036 + ef0be58 commit 5b5a220
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 179 deletions.
13 changes: 0 additions & 13 deletions .eslintrc.json

This file was deleted.

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

/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
{
files: ["**/*.js"],
rules: {
...js.configs.recommended.rules,
"no-undef": 0
},
},
eslintConfigPrettier,
];
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const DEFAULT_OPTIONS = {
async function migrate(cb) {
const options = parseArgs();

console.log(options)
console.log(options);
// process.exit(0)

let dataAttrChanged = 0;
Expand Down
Loading

0 comments on commit 5b5a220

Please sign in to comment.