Skip to content

Commit

Permalink
Fix lint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ViddeM committed Jun 8, 2024
1 parent dea10be commit c792191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"dev": "yarn generate-gql-types && next dev",
"generate-gql-types": "graphql-codegen",
"lint": "yarn generate-gql-types && next lint",
"lint:check": "yarn generate-gql-types && eslint --ignore-pattern .gitignore -c .ts,.tsx . && yarn prettier:check",
"lint:fix": "yarn generate-gql-types && eslint --ignore-pattern .gitignore -c .ts,.tsx --fix . && yarn prettier:fix",
"lint:check": "yarn generate-gql-types && eslint --ignore-pattern .gitignore . && yarn prettier:check",
"lint:fix": "yarn generate-gql-types && eslint --ignore-pattern .gitignore --fix . && yarn prettier:fix",
"prettier:check": "yarn generate-gql-types && prettier --list-different --ignore-pattern .gitignore \"**/*.{ts,tsx,js,jsx,json,yml,yaml}\"",
"prettier:fix": "yarn generate-gql-types && prettier --write --loglevel error --ignore-pattern .gitignore \"**/*.{ts,tsx,js,jsx,json,yml,yaml}\"",
"generate-gql-schema": "cd ../backend && cargo run --bin export_sdl > ../frontend/schema.gql",
Expand Down

0 comments on commit c792191

Please sign in to comment.