Skip to content

Commit 1bf5b86

Browse files
authored
Merge pull request #789 from fuhlig/build/stylelint-v16
Build/stylelint v16
2 parents 7cc2a3c + 9c13961 commit 1bf5b86

File tree

29 files changed

+3696
-13585
lines changed

29 files changed

+3696
-13585
lines changed

.circleci/config.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,10 @@ jobs:
3232
steps:
3333
- install
3434
- test
35-
build-node-16:
36-
docker:
37-
- image: cimg/node:16.18.1
38-
steps:
39-
- install
40-
- test
4135

4236
workflows:
4337
version: 2
4438
build_and_test:
4539
jobs:
4640
- build-node-current
4741
- build-node-lts
48-
- build-node-16

.stylelintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module.exports = {
88
'./packages/stylelint-config-copilot-scss',
99
'./packages/stylelint-config-copilot-plugins',
1010
'./packages/stylelint-config-copilot-order',
11+
'./packages/stylelint-config-copilot-stylistic',
1112
],
1213
ignoreFiles: [
1314
// enter files to ignore (e.g. libs, styleguide styles)

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88

99
_This project is very much work-in-progress. Right now it's about testing out different rules, combinations and plugins_
1010

11-
Collection of shareable configurations for [stylelint](https://stylelint.io/) and [stylelint plugins](https://stylelint.io/user-guide/plugins).
11+
Collection of shareable configurations for [Stylelint](https://stylelint.io/) and [Stylelint plugins](https://stylelint.io/user-guide/plugins).
1212

1313

1414

1515
The configs are separated into dedicated packages:
16-
- [base](/packages/stylelint-config-copilot-base): stylelint's built-in rules
16+
- [base](/packages/stylelint-config-copilot-base): Stylelint's built-in rules
1717
- [scss](/packages/stylelint-config-copilot-scss): Sass (scss syntax) specific rules
18-
- [plugins](/packages/stylelint-config-copilot-plugins): rules from various stylelint plugins
19-
- [order](https://github.com/fuhlig/stylelint-config-copilot/tree/main/packages/stylelint-config-copilot-order) - order specific rules
18+
- [plugins](/packages/stylelint-config-copilot-plugins): rules from various Stylelint plugins
19+
- [order](/packages/stylelint-config-copilot-order) - order specific rules
20+
- [stylistic](/packages/stylelint-config-copilot-stylistic) - stylistic rules in plugin form (previously built-in Stylelint rules)
2021

2122
Usage information are in the packages' documentations.
2223

@@ -69,7 +70,7 @@ npm install
6970
```
7071

7172
#### Test
72-
Test will run `ESLint` and find potentially unused stylelint rules in the base config
73+
Test will run `ESLint` and find potentially unused Stylelint rules in the base config
7374

7475
```bash
7576
npm test

0 commit comments

Comments
 (0)