@davidsneighbour/stylelint-config 5.1.4 → 5.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/index.js +19 -15
  3. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.1.5](https://github.com/davidsneighbour/configurations/compare/v5.1.4...v5.1.5) (2023-03-20)
7
+
8
+ **Note:** Version bump only for package @davidsneighbour/stylelint-config
9
+
10
+
11
+
12
+
13
+
6
14
  ## [5.1.4](https://github.com/davidsneighbour/configurations/compare/v5.1.3...v5.1.4) (2023-03-19)
7
15
 
8
16
  **Note:** Version bump only for package @davidsneighbour/stylelint-config
package/index.js CHANGED
@@ -11,6 +11,8 @@ const config = {
11
11
  "stylelint-no-unsupported-browser-features",
12
12
  "stylelint-order"
13
13
  ],
14
+
15
+
14
16
  "rules": {
15
17
  "alpha-value-notation": [
16
18
  "percentage",
@@ -137,7 +139,7 @@ const config = {
137
139
  "function-calc-no-unspaced-operator": true,
138
140
  "function-linear-gradient-no-nonstandard-direction": true,
139
141
  "function-name-case": "lower",
140
- "function-no-unknown": true,
142
+ "function-no-unknown": null,
141
143
  "function-url-quotes": "always",
142
144
  "hue-degree-notation": "angle",
143
145
  "import-notation": "url",
@@ -199,19 +201,6 @@ const config = {
199
201
  ]
200
202
  }
201
203
  ],
202
- "scss/at-extend-no-missing-placeholder": null,
203
- "scss/at-function-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
204
- "scss/at-import-no-partial-leading-underscore": true,
205
- "scss/at-import-partial-extension-blacklist": [
206
- "scss"
207
- ],
208
- "scss/at-mixin-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
209
- "scss/at-rule-no-unknown": true,
210
- "scss/dollar-variable-colon-space-after": "always",
211
- "scss/dollar-variable-colon-space-before": "never",
212
- "scss/dollar-variable-pattern": "^[_]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
213
- "scss/percent-placeholder-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
214
- "scss/selector-no-redundant-nesting-selector": true,
215
204
  "selector-attribute-quotes": "always",
216
205
  "selector-class-pattern": [
217
206
  "^[a-z0-9\\-]+$",
@@ -262,7 +251,22 @@ const config = {
262
251
  "inline-box"
263
252
  ]
264
253
  }
265
- ]
254
+ ],
255
+
256
+ "scss/at-extend-no-missing-placeholder": null,
257
+ "scss/at-function-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
258
+ "scss/at-import-no-partial-leading-underscore": true,
259
+ "scss/at-import-partial-extension-blacklist": [
260
+ "scss"
261
+ ],
262
+ "scss/at-mixin-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
263
+ "scss/at-rule-no-unknown": true,
264
+ "scss/dollar-variable-colon-space-after": "always",
265
+ "scss/dollar-variable-colon-space-before": "never",
266
+ "scss/dollar-variable-pattern": "^[_]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
267
+ "scss/function-no-unknown": true,
268
+ "scss/percent-placeholder-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
269
+ "scss/selector-no-redundant-nesting-selector": true,
266
270
  },
267
271
  "order/order": [
268
272
  "custom-properties",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@davidsneighbour/stylelint-config",
3
3
  "description": "Stylelint configuration for use in @davidsneighbour projects.",
4
- "version": "5.1.4",
4
+ "version": "5.1.5",
5
5
  "license": "MIT",
6
6
  "repository": "davidsneighbour/configurations",
7
7
  "author": {
@@ -15,7 +15,6 @@
15
15
  "postcss": "^8.4.21",
16
16
  "postcss-scss": "^4.0.6",
17
17
  "stylelint": "15.3.0",
18
- "stylelint-config-standard": "31.0.0",
19
18
  "stylelint-no-unsupported-browser-features": "6.1.0",
20
19
  "stylelint-order": "6.0.3",
21
20
  "stylelint-scss": "^4.5.0"
@@ -28,5 +27,5 @@
28
27
  "node": ">=18.12.1",
29
28
  "npm": ">=8.19.2"
30
29
  },
31
- "gitHead": "a1c427a6197c6d0015ee76c7e9230b471fe61dda"
30
+ "gitHead": "0d2306f7e737d8f6359708113c71fdb10e9dba73"
32
31
  }