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: 27.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: 28.0.0
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Aug 21, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c12b8cb View commit details
  2. Prepare 28.0.0 (#259)

    ybiquitous authored Aug 21, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f168dec View commit details
  3. 28.0.0

    ybiquitous committed Aug 21, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    ybiquitous Masafumi Koba
    Copy the full SHA
    e19cadf View commit details
Showing with 1,584 additions and 1,391 deletions.
  1. +5 −0 CHANGELOG.md
  2. +7 −1 index.js
  3. +1,568 −1,386 package-lock.json
  4. +4 −4 package.json
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 28.0.0

- Removed: `stylelint` less than `14.11.0` from peer dependencies.
- Changed: `alpha-value-notation` to be `"number"` for SVG `*-opacity` properties.

## 27.0.0

- Removed: `stylelint` less than `14.10.0` from peer dependencies.
8 changes: 7 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -6,7 +6,13 @@ module.exports = {
'alpha-value-notation': [
'percentage',
{
exceptProperties: ['opacity'],
exceptProperties: [
'opacity',
'fill-opacity',
'flood-opacity',
'stop-opacity',
'stroke-opacity',
],
},
],
'at-rule-empty-line-before': [
Loading