Skip to content

Commit

Permalink
Disable styelint bem selector class warning in template css
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCDL committed Aug 12, 2024
1 parent 78f7625 commit db2d9ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion css/templates/layout1.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/***** Layout 1 Template *****/

.t-layout--1 {
.t-layout--1 { /* stylelint-disable-line selector-class-pattern */
display: grid;
grid-row-gap: var(--space3);
grid-template:
Expand Down
2 changes: 1 addition & 1 deletion css/templates/layout2.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/***** Layout 2 Template *****/

.t-layout--2 {
.t-layout--2 { /* stylelint-disable-line selector-class-pattern */
display: grid;
grid-row-gap: var(--space3);
grid-template:
Expand Down
2 changes: 1 addition & 1 deletion css/templates/layout3.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/* grid-template within media query 'screen2' is not getting cascaded over with 'screen3' in IE for some reason (perhaps autoprefixer), so added 'max-width' media feature to 'screen2' queries */

.t-layout--3 {
.t-layout--3 { /* stylelint-disable-line selector-class-pattern */
display: grid;
grid-gap: var(--space3);
grid-template:
Expand Down
2 changes: 1 addition & 1 deletion css/templates/layout4.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/***** Layout 4 Template *****/

.t-layout--4 {
.t-layout--4 { /* stylelint-disable-line selector-class-pattern */
display: grid;
grid-row-gap: var(--space3);
grid-template:
Expand Down

0 comments on commit db2d9ba

Please sign in to comment.