Skip to content

Commit 862eca1

Browse files
committed
4.1.0
1 parent 9332bf4 commit 862eca1

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to Stylelint Use Nesting
22

3+
### 4.1.0 (March 8, 2022)
4+
5+
- Added: support for SCSS syntax
6+
37
### 4.0.0 (Jul 29, 2022)
48

59
- Updated: peer `stylelint` to >= 10 (major)

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Pull requests are the greatest contributions, so be sure they are focused in
1818
scope and avoid unrelated commits.
1919

2020
1. To begin; [fork this project], clone your fork, and add our upstream.
21-
```bash
21+
```shell
2222
# Clone your fork of the repo into the current directory
2323
git clone [email protected]:YOUR_USER/stylelint-use-nesting.git
2424

@@ -33,25 +33,25 @@ scope and avoid unrelated commits.
3333
```
3434

3535
2. Create a branch for your feature or fix:
36-
```bash
36+
```shell
3737
# Move into a new branch for your feature
3838
git checkout -b feature/thing
3939
```
40-
```bash
40+
```shell
4141
# Move into a new branch for your fix
4242
git checkout -b fix/something
4343
```
4444

4545
3. If your code follows our practices, then push your feature branch:
46-
```bash
46+
```shell
4747
# Test current code
4848
npm test
4949
```
50-
```bash
50+
```shell
5151
# Push the branch for your new feature
5252
git push origin feature/thing
5353
```
54-
```bash
54+
```shell
5555
# Or, push the branch for your update
5656
git push origin update/something
5757
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ possible in CSS.
1111

1212
Add [stylelint] and [Stylelint Use Nesting] to your project.
1313

14-
```bash
14+
```shell
1515
npm install stylelint stylelint-use-nesting --save-dev
1616
```
1717

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stylelint-use-nesting",
3-
"version": "4.0.0",
3+
"version": "4.1.0",
44
"description": "Enforce nesting when it is possible in CSS",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",

0 commit comments

Comments
 (0)