fix: linting

This commit is contained in:
Niklas von Hertzen 2021-07-11 20:51:12 +08:00
parent 122969bdf1
commit c4c8093aad

View File

@ -192,7 +192,10 @@ export class CSSParsedDeclaration {
this.position = parse(position, declaration.position);
this.textAlign = parse(textAlign, declaration.textAlign);
this.textDecorationColor = parse(textDecorationColor, declaration.textDecorationColor ?? declaration.color);
this.textDecorationLine = parse(textDecorationLine, declaration.textDecorationLine ?? declaration.textDecoration);
this.textDecorationLine = parse(
textDecorationLine,
declaration.textDecorationLine ?? declaration.textDecoration
);
this.textShadow = parse(textShadow, declaration.textShadow);
this.textTransform = parse(textTransform, declaration.textTransform);
this.transform = parse(transform, declaration.transform);