Skip to content

Commit 11523c3

Browse files
committed
feat: add ignoreAtRules: [] to no-invalid-position-declaration
1 parent cf0e24c commit 11523c3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
import type { RegExpLike } from '../../utils'
12
import type { RuleConfig } from '../rule-config'
23

3-
export type NoInvalidPositionDeclarationOptions = RuleConfig<true>
4+
export type NoInvalidPositionDeclarationOptions = RuleConfig<true, {
5+
/**
6+
* Ignore nesting at-rules within specified at-rules.
7+
*/
8+
ignoreAtRules?: RegExpLike[]
9+
}>

0 commit comments

Comments
 (0)