Skip to content

Commit

Permalink
fix: ignore test fixtures in lint command
Browse files Browse the repository at this point in the history
  • Loading branch information
hkp22 committed Oct 22, 2024
1 parent a4fabcc commit 3fd73e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ node_modules
.env
dist
public/codemirror
test/fixtures/laravel-api
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish --access public && git push --follow-tags",
"lint": "eslint .",
"lint": "eslint . --ignore-pattern 'test/fixtures/laravel-api/*'",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run",
Expand Down

0 comments on commit 3fd73e6

Please sign in to comment.