Skip to content

Commit

Permalink
Fix eslint glob path and ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed Oct 14, 2024
1 parent 5c70c49 commit b742504
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ export default [
},
},
{
ignores: ['src/convert.ts'],
ignores: ['build', 'src/convert.ts'],
},
];
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"prebuild": "npm run lint",
"build": "npm run clean && tsc && npm run copy",
"dev": "tsx ./src/index.ts",
"lint": "eslint ./**/*.ts",
"lint": "eslint './**/*.ts'",
"test": "vitest run ./tests --hook-timeout=60000 --test-timeout=60000 --no-file-parallelism",
"format": "prettier . --write",
"test:watch": "vitest ./tests",
Expand Down

0 comments on commit b742504

Please sign in to comment.