Skip to content

Commit

Permalink
merge main and resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakshmishri committed Aug 17, 2023
2 parents fabd5f3 + 1a37fe6 commit 6c352a1
Show file tree
Hide file tree
Showing 10 changed files with 710 additions and 576 deletions.
11 changes: 10 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"extends": ["stylelint-config-standard"]
"extends": ["stylelint-config-standard"],
"rules": {
"media-feature-range-notation": "prefix",
"selector-class-pattern": [
"^[a-z]([-]?[a-z0-9]+)*(__[a-z0-9]([-]?[a-z0-9]+)*)?(--[a-z0-9]([-|_]?[a-z0-9]+)*)?$",
{
"message": "Expected class \"%s\" to be in kebab-case or BEM-style naming."
}
]
}
}
2 changes: 1 addition & 1 deletion blocks/hero/hero.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* stylelint-disable */
/* stylelint-disable no-descending-specificity */

/* auto and non-auto block shared styles */
:root {
Expand Down
1 change: 0 additions & 1 deletion blocks/hotspots/hotspots.css
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,6 @@
right: 30px;
}

/* stylelint-disable-next-line max-line-length */
.hotspots-container .hotspot-layover .hotspot-layover-box .hotspot-layover-controls .hotspot-layover-button:first-child {
border-right: 1px solid #222;
}
Expand Down
1 change: 0 additions & 1 deletion blocks/v2-hero/v2-hero.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* stylelint-disable selector-class-pattern */
.v2-hero {
/* height of the hero block is set in main style to prevent CLS */
position: relative;
Expand Down
1 change: 0 additions & 1 deletion common/modal/modal-component.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@
}

.modal-content.modal-form .eloqua-form .elq-form input[type="checkbox"],
/* stylelint-disable-next-line max-line-length */
.modal-content.modal-form .eloqua-form .single-checkbox-row input ~ label.checkbox-aligned.elq-item-label::before {
background-color: transparent;
}
Expand Down
1,253 changes: 693 additions & 560 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@
},
"homepage": "https://github.com/adobe/helix-project-boilerplate#readme",
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/eslint-parser": "7.19.1",
"@babel/core": "7.22.10",
"@babel/eslint-parser": "7.22.10",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/test-runner": "0.15.1",
"@web/test-runner-commands": "0.6.5",
"chai": "4.3.7",
"eslint": "8.35.0",
"eslint": "8.47.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import": "2.28.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"sinon": "15.0.1",
"stylelint": "15.7.0",
"stylelint-config-standard": "30.0.1"
"stylelint": "15.10.2",
"stylelint-config-standard": "34.0.0"
}
}
1 change: 0 additions & 1 deletion styles/lazy-styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* stylelint-disable */
/* below the fold CSS goes here */

/* Headings */
Expand Down
2 changes: 0 additions & 2 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
src: local("Arial");
ascent-override: 93.75%;
descent-override: 6.25%;
/* stylelint-disable-next-line number-no-trailing-zeros */
line-gap-override: 0.00%;
/* stylelint-disable-next-line number-no-trailing-zeros */
size-adjust: 100.00%;
}

Expand Down
2 changes: 0 additions & 2 deletions templates/body-builder-news/body-builder-news.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* stylelint-disable indentation */
/* stylelint-disable-next-line comment-empty-line-before */
/* body builder news styling */
.body-builder-news main {
background-color: var(--color-white);
Expand Down

0 comments on commit 6c352a1

Please sign in to comment.