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 6dc6d14 commit b895c03
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .stylelintignore

This file was deleted.

4 changes: 2 additions & 2 deletions client/src/bundles/bundle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@import "variables";

// Import all of your SCSS stylesheets using relative paths from "components"
@import "../components/LoginSession/LoginSession.scss";
@import "../components/SessionManagerField/SessionManagerField.scss";
@import "../components/LoginSession/LoginSession";
@import "../components/SessionManagerField/SessionManagerField";

// Import any legacy SCSS stylesheets
// e.g. @import '../styles/MyComponent-ModelAdmin-legacy.scss
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"css": "WEBPACK_CHILD=css npm run build",
"test": "jest",
"coverage": "jest --coverage",
"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 b895c03

Please sign in to comment.