Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Feb 11, 2025
1 parent 40557b5 commit d027fe6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ test_frontend:
cd frontend && source ~/.nvm/nvm.sh && nvm use && npm run cypress:run

lint_frontend:
cd frontend && source ~/.nvm/nvm.sh && nvm use && npm run format
. ${NVM_DIR}/nvm.sh; cd frontend; nvm use; npm run format

lint_backend:
source backend/venv/bin/activate && black .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "../import-process.component.scss";
@use '../import-process.component.scss';

fieldset {
padding: 0.35em 0.625em 0.75em !important;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use "../import-process.component.scss";
@use '../import-process.component.scss';

fieldset {
padding: 0.35em 0.625em 0.75em !important;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
.mappingButton{
margin-bottom: 1em;
margin-left: 1em;
width: 40%;
.mappingButton {
margin-bottom: 1em;
margin-left: 1em;
width: 40%;
}

#renameMapping{
@extend .mappingButton
#renameMapping {
@extend .mappingButton;
}
#deleteMapping {
@extend .mappingButton;
margin-left: 3em;
}
#deleteMapping{
@extend .mappingButton;
margin-left:3em;
}

0 comments on commit d027fe6

Please sign in to comment.