Skip to content

Commit

Permalink
Merge branch 'main' into ravi/nav-remove-redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
arelra authored May 13, 2024
2 parents 5aa39b6 + 19c393f commit bc37d87
Show file tree
Hide file tree
Showing 22 changed files with 685 additions and 1,057 deletions.
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ updates:
directory: '/'
schedule:
interval: 'daily'
allow:
- dependency-name: '@guardian/*'
- dependency-name: '@babel/*'
groups:
# Most Babel dependencies are released with synchronised versions
babel:
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/snyk-pr.yml

This file was deleted.

100 changes: 0 additions & 100 deletions .sass-lint.yml

This file was deleted.

69 changes: 69 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"extends": "stylelint-config-standard-scss",
"ignoreFiles": [
"static/src/stylesheets/icons/**/*.scss",
"static/src/stylesheets/email/foundation-emails/**/*.scss",
"static/src/stylesheets/atoms/vars.scss"
],
"rules": {
"selector-class-pattern": null,
"at-rule-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"scss/dollar-variable-pattern": null,
"selector-id-pattern": null,
"scss/no-global-function-names": null,
"scss/at-rule-conditional-no-parentheses": null,
"value-keyword-case": null,
"scss/load-no-partial-leading-underscore": null,
"scss/at-mixin-pattern": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"no-descending-specificity": null,
"scss/operator-no-unspaced": null,
"rule-empty-line-before": null,
"scss/dollar-variable-colon-space-after": null,
"no-duplicate-selectors": null,
"length-zero-no-unit": null,
"comment-whitespace-inside": null,
"font-family-no-missing-generic-family-keyword": null,
"scss/percent-placeholder-pattern": null,
"alpha-value-notation": null,
"block-no-empty": null,
"color-function-notation": null,
"color-hex-length": null,
"comment-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"font-family-name-quotes": null,
"font-family-no-duplicate-names": null,
"function-linear-gradient-no-nonstandard-direction": null,
"function-url-quotes": null,
"hue-degree-notation": null,
"keyframes-name-pattern": null,
"media-feature-name-no-vendor-prefix": null,
"media-feature-range-notation": null,
"named-grid-areas-no-invalid": null,
"no-empty-source": null,
"no-invalid-position-at-import-rule": null,
"number-max-precision": null,
"property-no-unknown": null,
"property-no-vendor-prefix": null,
"scss/at-else-closing-brace-newline-after": null,
"scss/at-else-closing-brace-space-after": null,
"scss/at-else-empty-line-before": null,
"scss/at-if-closing-brace-newline-after": null,
"scss/at-if-closing-brace-space-after": null,
"scss/at-mixin-parentheses-space-before": null,
"scss/comment-no-empty": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/operator-no-newline-after": null,
"selector-attribute-quotes": null,
"selector-not-notation": null,
"selector-type-no-unknown": null,
"unit-no-unknown": null,
"value-no-vendor-prefix": null
}
}
10 changes: 10 additions & 0 deletions common/app/conf/switches/ABTestSwitches.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,14 @@ trait ABTestSwitches {
sellByDate = Some(LocalDate.of(2024, 5, 31)),
exposeClientSide = true,
)

Switch(
ABTests,
"ab-onward-journeys",
"Test click through rate when there is only one onward journey container shown.",
owners = Seq(Owner.withEmail("[email protected]")),
safeState = Off,
sellByDate = Some(LocalDate.of(2024, 6, 7)),
exposeClientSide = true,
)
}
Loading

0 comments on commit bc37d87

Please sign in to comment.