Skip to content

Commit

Permalink
ignore schemas in lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Sep 2, 2024
1 parent 53f0899 commit 54654d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"test": "yarn workspaces foreach --all -pt run test",
"test:int": "yarn workspaces foreach --all -pt run test:int",
"dev": "yarn workspaces foreach --all -pi -j unlimited run dev",
"lint": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --fix",
"lint": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --ignore-pattern 'packages/common/validation/schemas/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'packages/**/src/**/*.{js,ts,tsx}' 'packages/**/test/**/*.{js,ts,tsx}' --fix --ignore-pattern 'packages/common/validation/schemas/**/*.{js,ts,tsx}'",
"format": "prettier --write 'packages/**/src/**/*.{js,ts,tsx,json,md}' 'packages/**/test/**/*.{js,ts,tsx,json,md}'",
"mock-standalone:build": "yarn workspace @dappnode/admin-ui run mock-standalone:build",
"mock-standalone": "yarn workspace @dappnode/admin-ui run mock-standalone",
Expand Down

0 comments on commit 54654d5

Please sign in to comment.