Skip to content

Commit b9f175b

Browse files
author
Marek Rozmus
committed
Add stylelint and husky configurations
1 parent b6ce9c4 commit b9f175b

File tree

4 files changed

+3384
-26
lines changed

4 files changed

+3384
-26
lines changed

.stylelintrc

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"ignoreFiles": ["**/*.js"],
3+
"extends": "stylelint-config-standard",
4+
"rules": {
5+
"selector-pseudo-class-no-unknown": [
6+
true,
7+
{
8+
"ignorePseudoClasses": [
9+
"export",
10+
"import",
11+
"global",
12+
"local"
13+
]
14+
}
15+
],
16+
"property-no-unknown": [
17+
true,
18+
{
19+
"ignoreProperties": [
20+
"composes",
21+
"compose-with"
22+
]
23+
}
24+
],
25+
"at-rule-no-unknown": [
26+
true,
27+
{
28+
"ignoreAtRules": [
29+
"value"
30+
]
31+
}
32+
]
33+
}
34+
}

0 commit comments

Comments
 (0)