Skip to content

Commit

Permalink
Explicitly ignore tsup temporary files (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericanderson authored May 9, 2024
1 parent fcae849 commit 9d22ee3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"**/src/generatedNoCheck/",
"**/src/generatedNoCheck2/",
"pnpm-lock.yaml",
".vscode/settings.json"
".vscode/settings.json",
"**/tsup.config.bundled_*"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.90.4.wasm",
Expand Down
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ import * as importPlugin from "eslint-plugin-import";
import * as tseslint from "typescript-eslint";

export default tseslint.config(
{
ignores: ["**/tsup.config.bundled_*"],
},
{ files: ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"] },
tseslint.configs.base,
{
Expand Down

0 comments on commit 9d22ee3

Please sign in to comment.