diff --git a/.stylelintignore b/.stylelintignore deleted file mode 100644 index 62906a9..0000000 --- a/.stylelintignore +++ /dev/null @@ -1,4 +0,0 @@ -client/src/**/*.js -client/src/**/*.svg -client/src/**/**/*.js -client/src/**/**/*.svg diff --git a/client/src/bundles/bundle.scss b/client/src/bundles/bundle.scss index 510b607..de65044 100644 --- a/client/src/bundles/bundle.scss +++ b/client/src/bundles/bundle.scss @@ -1,4 +1,3 @@ @import '../styles/variables'; - @import '../components/WebAuthn/Register'; @import '../components/WebAuthn/Verify'; diff --git a/client/src/components/LoadingIndicator.scss b/client/src/components/LoadingIndicator.scss index 1165ec6..b5d0f92 100644 --- a/client/src/components/LoadingIndicator.scss +++ b/client/src/components/LoadingIndicator.scss @@ -21,7 +21,7 @@ animation: $loading-indicator-animation; } -@-webkit-keyframes spinner-loader { +@keyframes spinner-loader { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); @@ -31,6 +31,7 @@ transform: rotate(360deg); } } + @keyframes spinner-loader { 0% { -webkit-transform: rotate(0deg); diff --git a/package.json b/package.json index cd2cee1..dd4330c 100644 --- a/package.json +++ b/package.json @@ -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"