Skip to content

Commit 0ae9ee6

Browse files
authored
Remove non-existent rule and bump stylelint peer dep (#237)
1 parent 7bb3a66 commit 0ae9ee6

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

packages/stylelint-plugin/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
<!-- ## [Unreleased] -->
8+
## [Unreleased]
9+
10+
### Changed
11+
12+
- Remove `no-invalid-position-at-import-rule` rule as it is not in a currently released version of stylelint [[#237](https://github.com/Shopify/web-configs/pull/237)]
13+
- Update peer dependency to `>=13.12.0` [[#237](https://github.com/Shopify/web-configs/pull/237)]
914

1015
## [10.1.0] - 2021-03-10
1116

@@ -350,7 +355,6 @@ property: <top> <right> <bottom> <left>
350355

351356
* Initial release
352357

353-
[Unreleased]: https://github.com/Shopify/stylelint-config-shopify/compare/v7.4.0...HEAD
354358
[7.3.0]: https://github.com/Shopify/stylelint-config-shopify/compare/v7.3.0...v7.4.0
355359
[7.3.0]: https://github.com/Shopify/stylelint-config-shopify/compare/v7.2.1...v7.3.0
356360
[7.2.1]: https://github.com/Shopify/stylelint-config-shopify/compare/v7.2.0...v7.2.1

packages/stylelint-plugin/config/general.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,4 @@ module.exports = {
2323
'no-missing-end-of-source-newline': true,
2424
// Disallow animation names that do not correspond to a @keyframes declaration.
2525
'no-unknown-animations': true,
26-
// Disallow invalid position `@import` rules within a stylesheet.
27-
'no-invalid-position-at-import-rule': true,
2826
};

packages/stylelint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
"stylelint": "^13.12.0"
3636
},
3737
"peerDependencies": {
38-
"stylelint": ">=13.7.0"
38+
"stylelint": ">=13.12.0"
3939
}
4040
}

0 commit comments

Comments
 (0)