Skip to content

Commit a0c9c64

Browse files
author
Timothy Lindvall
committed
chore: Fix linting errors.
1 parent e6c1ca7 commit a0c9c64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/@css-blocks/core/src/BlockParser/features/add-preset-selectors.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { postcss } from "opticss";
22

3+
import { CLASS_NAME_IDENT } from "../../BlockSyntax";
34
import { Block } from "../../BlockTree";
45
import { Configuration } from "../../configuration";
56
import { CssBlockError } from "../../errors";
67
import { sourceRange } from "../../SourceLocation";
78
import { stripQuotes } from "../utils";
8-
import { CLASS_NAME_IDENT } from "../../BlockSyntax";
99

1010
/**
1111
* Traverse a definition file's rules and define a preset block-class for each
@@ -38,8 +38,8 @@ export function addPresetSelectors(configuration: Configuration, root: postcss.R
3838
block.addError(
3939
new CssBlockError(
4040
`${val} isn't a valid class name.`,
41-
sourceRange(configuration, root, file, decl)
42-
)
41+
sourceRange(configuration, root, file, decl),
42+
),
4343
);
4444
}
4545

0 commit comments

Comments
 (0)