Skip to content

Commit

Permalink
MNT Fix scss lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Jun 10, 2024
1 parent bf6c6eb commit baee21d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .stylelintignore

This file was deleted.

1 change: 0 additions & 1 deletion client/src/bundles/bundle.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@import '../styles/variables';

@import '../components/WebAuthn/Register';
@import '../components/WebAuthn/Verify';
3 changes: 2 additions & 1 deletion client/src/components/LoadingIndicator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
animation: $loading-indicator-animation;
}

@-webkit-keyframes spinner-loader {
@keyframes spinner-loader {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
Expand All @@ -31,6 +31,7 @@
transform: rotate(360deg);
}
}

@keyframes spinner-loader {
0% {
-webkit-transform: rotate(0deg);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"test": "jest",
"coverage": "jest --coverage",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && yarn lint-sass",
"lint": "yarn lint-js && yarn lint-sass",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "stylelint client/src"
Expand Down

0 comments on commit baee21d

Please sign in to comment.