Skip to content

Commit 4e72425

Browse files
fix: update glob patterns
1 parent 784c374 commit 4e72425

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/globs.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export const GLOB_MTS = "**/?(.)*.mts";
2323
export const GLOB_CJS = "**/?(.)*.cjs";
2424
export const GLOB_CTS = "**/?(.)*.cts";
2525

26-
export const GLOB_STYLE = "**/?(.)*.{c,le,sc}ss";
26+
// cspell:disable-next-line
27+
export const GLOB_STYLE = "**/?(.)*.{c,le,sc,pc,postc}ss";
2728
export const GLOB_CSS = "**/?(.)*.css";
2829
export const GLOB_POSTCSS = "**/?(.)*.{p,post}css";
2930
export const GLOB_LESS = "**/?(.)*.less";
@@ -56,10 +57,13 @@ export const GLOB_ALL_SRC = [
5657
GLOB_STYLE,
5758
GLOB_JSON,
5859
GLOB_JSON5,
60+
GLOB_JSONC,
5961
GLOB_MARKDOWN,
6062
GLOB_VUE,
6163
GLOB_YAML,
6264
GLOB_HTML,
65+
GLOB_TOML,
66+
GLOB_GRAPHQL,
6367
];
6468

6569
export const GLOB_EXCLUDE = [

0 commit comments

Comments
 (0)