Skip to content

Commit

Permalink
fix: 静的解析コマンドのファイルパスがおかしかったので修正(#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
h-yoshikawa44 committed Sep 16, 2023
1 parent f939de6 commit 712da02
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 @@ -9,8 +9,8 @@
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint-check": "npm run lint:eslint && npm run check:prettier",
"lint:eslint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"check:prettier": "prettier --check './{public,src}/**/*.{js,jsx,ts,tsx,html,gql,graphql,json}'",
"lint:eslint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"check:prettier": "prettier --check \"./{public,src}/**/*.{js,jsx,ts,tsx,html,gql,graphql,json}\"",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run check:prettier -- --write",
Expand Down

0 comments on commit 712da02

Please sign in to comment.