Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JoonasAapro committed Dec 29, 2023
1 parent 747b6c7 commit b527934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/packs/stylesheets/decidim/iframe/iframe.scss

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -c .eslintrc.json --ext .js app/packs/",
"lint-fix": "eslint -c .eslintrc.json --ext .js app/packs/ --fix",
"stylelint": "stylelint **/*.scss",
"stylelint-fix": "stylelint **/*.scss --fix"
"stylelint": "test -n \"$(find . -type f -name '*.scss')\" && stylelint **/*.scss || echo 'No SCSS files found'",
"stylelint-fix": "test -n \"$(find . -type f -name '*.scss')\" && stylelint **/*.scss --fix || echo 'No SCSS files found'"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit b527934

Please sign in to comment.