Skip to content

Commit 39f229c

Browse files
authored
Add stylelint (#344)
1 parent cf7cebd commit 39f229c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1309
-422
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- name: Lint
2020
run: npm run lint
2121

22+
- name: Stylelint
23+
run: npm run stylelint
24+
2225
test:
2326
name: Tests:units
2427
runs-on: ubuntu-latest

.stylelintrc.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": [
3+
"stylelint-config-standard-scss",
4+
"stylelint-config-idiomatic-order",
5+
"stylelint-config-standard-scss"
6+
],
7+
"rules": {
8+
"selector-class-pattern": null,
9+
"block-no-empty": null,
10+
"no-empty-source": null
11+
}
12+
}

0 commit comments

Comments
 (0)