Skip to content

Commit 14979f4

Browse files
fix(types): make tailwindFunctions and tailwindAttributes optional (#206)
1 parent 3c4989c commit 14979f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ export interface PluginOptions {
99
/**
1010
* List of custom function and tag names that contain classes.
1111
*/
12-
tailwindFunctions: string[]
12+
tailwindFunctions?: string[]
1313

1414
/**
1515
* List of custom attributes that contain classes.
1616
*/
17-
tailwindAttributes: string[]
17+
tailwindAttributes?: string[]
1818
}
1919

2020
declare module 'prettier' {

0 commit comments

Comments
 (0)