Skip to content

Commit

Permalink
Update lint script to disable deprecation rule
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinciarka committed Mar 26, 2024
1 parent 9c1d9cb commit ce37132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"build:server": "tsc --project ./tsconfig.prod.json",
"format": "prettier --log-level silent --cache --cache-location ./node_modules/.cache/prettier.cache --check \"./**/*.{ts,tsx,js,jsx}\"",
"format:fix": "prettier --loglevel silent --cache --cache-location ./node_modules/.cache/prettier.cache --write \"./**/*.{ts,tsx,js,jsx}\"",
"lint": "eslint --quiet --cache --cache-location ./node_modules/.cache/eslint.cache --ext .ts --ext .tsx .",
"lint": "eslint --quiet --cache --cache-location ./node_modules/.cache/eslint.cache --rule 'deprecation/deprecation: \"off\"' --ext .ts --ext .tsx .",
"lint:fix": "yarn lint --fix",
"typecheck-test": "tsc -p ./tsconfig.test.json --noEmit --incremental --tsBuildInfoFile './node_modules/.cache/.test-tsbuildinfo'",
"typecheck-app": "tsc -p ./tsconfig.json --noEmit --incremental --tsBuildInfoFile './node_modules/.cache/.app-tsbuildinfo'",
Expand Down

0 comments on commit ce37132

Please sign in to comment.