We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed8c1a commit ed40581Copy full SHA for ed40581
crates/oxc_transformer/src/plugins/styled_components.rs
@@ -114,11 +114,10 @@ pub struct StyledComponentsOptions {
114
/// Transpiles styled-components tagged template literals to a smaller representation
115
/// than what Babel normally creates, helping to reduce bundle size.
116
///
117
- /// Converts `styled.div\`width: 100%;\`` to `styled.div(['width: 100%;'])`, which is
+ /// Converts `` styled.div`width: 100%;` `` to `styled.div(['width: 100%;'])`, which is
118
/// more compact than the standard Babel template literal transformation.
119
120
/// Default: `true`
121
- #[expect(clippy::doc_link_with_quotes)]
122
#[serde(default = "default_as_true")]
123
pub transpile_template_literals: bool,
124
0 commit comments