Skip to content

Commit

Permalink
fix ncc and eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Glahn committed May 10, 2023
1 parent ea926bf commit b431e6c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// new flat file configuration for eslint
// https://eslint.org/docs/latest/use/configure/configuration-files-new

import js from "@eslint/js";
import globals from "globals";
const js = require("@eslint/js");
const globals = require("globals");

export default [
module.exports = [
js.configs.recommended,
{
languageOptions: {
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/phish108/autotag-action/issues"
},
Expand All @@ -27,10 +26,10 @@
},
"devDependencies": {
"@eslint/js": "8.40.0",
"globals": "13.20.0",
"@vercel/ncc": "0.34.0",
"@vercel/ncc": "0.36.1",
"chai": "4.3.6",
"eslint": "8.40.0",
"globals": "13.20.0",
"mocha": "10.0.0"
}
}

0 comments on commit b431e6c

Please sign in to comment.