Skip to content

Commit 340318c

Browse files
authored
feat(project): add support for stylelint for linting CSS files (#4801)
Co-authored-by: Josh Black <[email protected]>
1 parent 0fa60a4 commit 340318c

File tree

6 files changed

+1536
-12
lines changed

6 files changed

+1536
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
run: npm ci
4949
- name: Lint JavaScript
5050
run: npm run lint
51+
- name: Lint CSS
52+
run: npm run lint:css
5153
- name: Lint markdown
5254
run: npm run lint:md
5355

.stylelintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
docs/public/**/*.css
2+
lib-esm/**/*.css
3+
lib/**/*.css
4+
dist/**/*.css
5+
.next/**/*.css

0 commit comments

Comments
 (0)