Skip to content

Commit

Permalink
fix invalid package references
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Apr 27, 2024
1 parent a896f4a commit 3a7c24e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ fix-css-only: mkdir-reports ## fix CSS linting problems automatically
@echo "Fixing CSS style problems..."
@npx --no-install stylelint \
--fix \
--config "$(APP_ROOT)/.stylelintrc.json" \
--config "$(APP_ROOT)/package.json" \
--output-file "$(REPORTS_DIR)/fixed-css.txt" \
"$(APP_ROOT)/**/*.css"

Expand All @@ -708,7 +708,7 @@ fix-md-only: mkdir-reports ## fix Markdown linting problems automatically
@npx --no-install remark \
--output --frail \
--silently-ignore \
--rc-path "$(APP_ROOT)/.remarkrc" \
--rc-path "$(APP_ROOT)/package.json" \
--ignore-path "$(APP_ROOT)/.remarkignore" \
"$(APP_ROOT)" "$(APP_ROOT)/.*/" \
2>&1 | tee "$(REPORTS_DIR)/fixed-md.txt"
Expand Down

0 comments on commit 3a7c24e

Please sign in to comment.