Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner committed Nov 19, 2024
1 parent 1925e16 commit cd0d50d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions test-app/.stylelintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@

module.exports = {
extends: ['stylelint-config-standard', 'stylelint-prettier/recommended'],
rules: {
'color-hex-length': null,
'font-family-no-missing-generic-family-keyword': null,
},
};
2 changes: 1 addition & 1 deletion test-app/app/assets/styles/fonts.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "https://fonts.googleapis.com/css?family=Pacifico";
@import url("https://fonts.googleapis.com/css?family=Pacifico");

@font-face {
font-family: "GT Pressura";
Expand Down
8 changes: 4 additions & 4 deletions test-app/app/assets/styles/main.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import "shepherd.js/dist/css/shepherd.css";
@import "./fonts.css";
@import "./shepherd-theme.css";
@import url("shepherd.js/dist/css/shepherd.css");
@import url("./fonts.css");
@import url("./shepherd-theme.css");

html,
body {
Expand Down Expand Up @@ -90,7 +90,7 @@ button {
font-size: 50pt;

.ember-title {
font-family: "Pacifico";
font-family: Pacifico;
}
}

Expand Down
2 changes: 1 addition & 1 deletion test-app/app/styles/app.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* This should be blank. Ember needs this. */
/* This should be blank. Ember needs this. */

0 comments on commit cd0d50d

Please sign in to comment.