-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dina/update-logo-styling-for-advertising-par…
…tner
- Loading branch information
Showing
18 changed files
with
716 additions
and
895 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,4 +64,14 @@ trait ABTestSwitches { | |
sellByDate = Some(LocalDate.of(2024, 6, 7)), | ||
exposeClientSide = true, | ||
) | ||
|
||
Switch( | ||
ABTests, | ||
"ab-deeply-read-right-column", | ||
"Add deeply read component to the right hand column", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = Some(LocalDate.of(2024, 7, 31)), | ||
exposeClientSide = true, | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,16 @@ trait PerformanceSwitches { | |
exposeClientSide = false, | ||
) | ||
|
||
val CircuitBreakerDcrSwitch = Switch( | ||
SwitchGroup.Performance, | ||
"circuit-breaker-dcr", | ||
"If this switch is switched on then the DCR API circuit breaker will be operational", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
safeState = Off, | ||
sellByDate = never, | ||
exposeClientSide = false, | ||
) | ||
|
||
val AutoRefreshSwitch = Switch( | ||
SwitchGroup.Performance, | ||
"auto-refresh", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ import java.time.LocalDate | |
object ActiveExperiments extends ExperimentsDefinition { | ||
override val allExperiments: Set[Experiment] = | ||
Set( | ||
CommercialMegaTest, | ||
DarkModeWeb, | ||
DCRTagPages, | ||
DCRVideoPages, | ||
|
@@ -22,36 +21,6 @@ object ActiveExperiments extends ExperimentsDefinition { | |
implicit val canCheckExperiment: CanCheckExperiment = new CanCheckExperiment(this) | ||
} | ||
|
||
object CommercialMegaTest | ||
extends Experiment( | ||
name = "commercial-mega-test", | ||
description = "Test the revenue effect of changes made during Q4", | ||
owners = Seq(Owner.withEmail("[email protected]")), | ||
sellByDate = LocalDate.of(2024, 8, 8), | ||
participationGroup = Perc5A, | ||
) | ||
|
||
object DCRTagPages | ||
extends Experiment( | ||
name = "dcr-tag-pages", | ||
description = "Render tag pages with DCR", | ||
owners = Seq(Owner.withGithub("[email protected]")), | ||
sellByDate = LocalDate.of(2024, 5, 31), | ||
participationGroup = Perc20A, | ||
) | ||
|
||
object DCRVideoPages | ||
extends Experiment( | ||
name = "dcr-video-pages", | ||
description = "Render video pages with DCR", | ||
owners = Seq( | ||
Owner.withGithub("[email protected]"), | ||
Owner.withGithub("[email protected]"), | ||
), | ||
sellByDate = LocalDate.of(2024, 5, 30), | ||
participationGroup = Perc10A, | ||
) | ||
|
||
object UpdatedHeaderDesign | ||
extends Experiment( | ||
name = "updated-header-design", | ||
|
@@ -87,4 +56,24 @@ object UpdateLogoAdPartner | |
owners = Seq(Owner.withGithub("[email protected]")), | ||
sellByDate = LocalDate.of(2024, 7, 30), | ||
participationGroup = Perc0A, | ||
|
||
object DCRVideoPages | ||
extends Experiment( | ||
name = "dcr-video-pages", | ||
description = "Render video pages with DCR", | ||
owners = Seq( | ||
Owner.withGithub("[email protected]"), | ||
Owner.withGithub("[email protected]"), | ||
), | ||
sellByDate = LocalDate.of(2024, 5, 30), | ||
participationGroup = Perc10A, | ||
) | ||
|
||
object DCRTagPages | ||
extends Experiment( | ||
name = "dcr-tag-pages", | ||
description = "Render tag pages with DCR", | ||
owners = Seq(Owner.withGithub("[email protected]")), | ||
sellByDate = LocalDate.of(2024, 5, 31), | ||
participationGroup = Perc20A, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.