Skip to content

Commit

Permalink
Merge pull request #78 from hwangsihu/main
Browse files Browse the repository at this point in the history
Remove Useless Settings
  • Loading branch information
Tomato6966 authored Oct 26, 2024
2 parents be8c083 + bb8b758 commit d3ea220
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const compat = new FlatCompat({
export default [
{
ignores: [
"**/config",
"**/dist",
"**/docs",
"**/node_modules",
Expand Down
2 changes: 0 additions & 2 deletions tools/cleanup.js
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
2 changes: 0 additions & 2 deletions tools/fixup.js
Original file line number Diff line number Diff line change
@@ -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);
Expand Down

0 comments on commit d3ea220

Please sign in to comment.