Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stylelint/stylelint-config-standard
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 32.0.0
Choose a base ref
...
head repository: stylelint/stylelint-config-standard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 33.0.0
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Apr 16, 2023

  1. Prepare 33.0.0 (#288)

    ybiquitous authored Apr 16, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    72431b3 View commit details
  2. 33.0.0

    ybiquitous committed Apr 16, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    ybiquitous Masafumi Koba
    Copy the full SHA
    5110f3b View commit details
Showing with 139 additions and 129 deletions.
  1. +14 −8 CHANGELOG.md
  2. +1 −0 index.js
  3. +116 −113 package-lock.json
  4. +8 −8 package.json
22 changes: 14 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
# Changelog

# 33.0.0

- Removed: `stylelint` less than `15.5.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@12.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/12.0.0).
- Changed: restored `declaration-block-single-line-max-declarations` removed on `30.0.0`.

# 32.0.0

- Removed: `stylelint` less than `15.4.0` from peer dependencies.
- Added: `media-feature-range-notation: "context"` rule
- Added: `media-feature-range-notation: "context"` rule.

## 31.0.0

- Removed: `stylelint` less than `15.3.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@11.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/11.0.0)
- Changed: updated to [`stylelint-config-recommended@11.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/11.0.0).

## 30.0.1

- Fixed: updated to [`stylelint-config-recommended@10.0.1`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/10.0.1)
- Fixed: updated to [`stylelint-config-recommended@10.0.1`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/10.0.1).

## 30.0.0

@@ -36,20 +42,20 @@
## 27.0.0

- Removed: `stylelint` less than `14.10.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@9.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/9.0.0)
- Changed: updated to [`stylelint-config-recommended@9.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/9.0.0).
- Added: `keyframe-selector-notation` rule.

## 26.0.0

- Removed: `stylelint` less than `14.9.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@8.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/8.0.0)
- Changed: updated to [`stylelint-config-recommended@8.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/8.0.0).
- Added: `import-notation` rule.
- Added: `selector-not-notation` rule.

## 25.0.0

- Removed: `stylelint` less than `14.4.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@7.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/7.0.0)
- Changed: updated to [`stylelint-config-recommended@7.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/7.0.0).

## 24.0.0

@@ -92,12 +98,12 @@ We recommend using [Autoprefixer](https://github.com/postcss/autoprefixer) to au
## 22.0.0

- Removed: `stylelint` less than `13.13.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@5.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/5.0.0)
- Changed: updated to [`stylelint-config-recommended@5.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/5.0.0).

## 21.0.0

- Removed: `stylelint` less than `13.12.0` from peer dependencies.
- Changed: updated to [`stylelint-config-recommended@4.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/4.0.0)
- Changed: updated to [`stylelint-config-recommended@4.0.0`](https://github.com/stylelint/stylelint-config-recommended/releases/tag/4.0.0).

## 20.0.0

1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -53,6 +53,7 @@ module.exports = {
},
],
'declaration-block-no-redundant-longhand-properties': true,
'declaration-block-single-line-max-declarations': 1,
'declaration-empty-line-before': [
'always',
{
Loading