diff --git a/eslint.config.mjs b/eslint.config.mjs index 57d87c2..a3e596a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -17,7 +17,6 @@ const compat = new FlatCompat({ export default [ { ignores: [ - "**/config", "**/dist", "**/docs", "**/node_modules", diff --git a/tools/cleanup.js b/tools/cleanup.js index 8b8936b..f6ee148 100644 --- a/tools/cleanup.js +++ b/tools/cleanup.js @@ -1,7 +1,5 @@ -/* eslint-disable */ const { readdirSync, existsSync, lstatSync, rmdirSync, unlinkSync } = require('fs'); const { join } = require('path') -/* eslint-enable */ const deleteFolderRecursive = (path) => { if (!existsSync(path)) return console.error("No Path found for: ", path); diff --git a/tools/fixup.js b/tools/fixup.js index e701254..023bfba 100644 --- a/tools/fixup.js +++ b/tools/fixup.js @@ -1,7 +1,5 @@ -/* eslint-disable */ const { existsSync, writeFileSync } = require('fs') const { join } = require('path') -/* eslint-enable */ const writePackageJson = (path) => { if (!existsSync(path)) return console.error("no path found for: ", path);