We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignore: ["keyframe-selectors"]
selector-disallowed-list
1 parent 22992bb commit 62c8a1fCopy full SHA for 62c8a1f
src/rules/stylelint/selector-disallowed-list.d.ts
@@ -1,5 +1,7 @@
1
import type { RuleConfig } from '../rule-config'
2
3
+type SelectorDisallowedListIgnore = 'inside-block' | 'keyframe-selectors'
4
+
5
export type SelectorDisallowedListOptions = RuleConfig<
6
string | RegExp | (string | RegExp)[],
7
{
@@ -11,7 +13,7 @@ export type SelectorDisallowedListOptions = RuleConfig<
11
13
/**
12
14
* Ignore selectors that are inside a block.
15
*/
- ignore?: ['inside-block']
16
+ ignore?: [SelectorDisallowedListIgnore]
17
message?: string | ((selector: string) => string)
18
}
19
>
0 commit comments