Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 30e486c

Browse files
committed
Fix some deprecated rules
1 parent 8ed549b commit 30e486c

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [1.1.1] - 2023-08-08
8+
#### Added
9+
* *Nothing*
10+
11+
#### Changed
12+
* *Nothing*
13+
14+
#### Deprecated
15+
* *Nothing*
16+
17+
#### Removed
18+
* *Nothing*
19+
20+
#### Fixed
21+
* Fix rules to work with Stylelint >=15
22+
23+
24+
## [1.1.0] - 2023-08-08
25+
#### Added
26+
* *Nothing*
27+
28+
#### Changed
29+
* Update dependencies
30+
31+
#### Deprecated
32+
* *Nothing*
33+
34+
#### Removed
35+
* *Nothing*
36+
37+
#### Fixed
38+
* *Nothing*
39+
40+
741
## [1.0.1] - 2022-05-12
842
#### Added
943
* *Nothing*

index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ module.exports = {
99
'stylelint-selector-bem-pattern'
1010
],
1111
rules: {
12-
'string-quotes': 'single',
13-
'number-leading-zero': 'never',
12+
'import-notation': 'string',
13+
'selector-not-notation': 'simple',
14+
'media-query-no-invalid': null,
1415
'selector-pseudo-element-colon-notation': null,
1516
'alpha-value-notation': null,
1617
'scss/at-import-partial-extension': null,

0 commit comments

Comments
 (0)