stylelint-config-ccb 1.6.5 → 1.7.0

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 (2) hide show
  1. package/index.js +9 -1
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -14,6 +14,13 @@ module.exports = {
14
14
 
15
15
  'plugin/stylelint-selector-no-empty': true,
16
16
 
17
+ 'declaration-property-max-values': {
18
+ 'border-width': 2,
19
+ border: 3,
20
+ margin: 2,
21
+ padding: 2
22
+ },
23
+
17
24
  'rule-selector-property-disallowed-list': {
18
25
  html: ['background', 'background-color', 'background-image', /^background/]
19
26
  },
@@ -150,7 +157,8 @@ module.exports = {
150
157
  'value-keyword-case': [
151
158
  'lower',
152
159
  {
153
- ignoreProperties: 'unicode-range'
160
+ ignoreProperties: 'unicode-range',
161
+ camelCaseSvgKeywords: true
154
162
  }
155
163
  ],
156
164
  'unit-no-unknown': [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stylelint-config-ccb",
3
- "version": "1.6.5",
3
+ "version": "1.7.0",
4
4
  "description": "Stylelint config which extends stylelint-config-standard",
5
5
  "keywords": [
6
6
  "stylelint",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "dependencies": {
20
20
  "stylelint-color-format": "^1.1.0",
21
- "stylelint-config-standard": "^24.0.0",
21
+ "stylelint-config-standard": "^25.0.0",
22
22
  "stylelint-order": "^5.0.0",
23
23
  "stylelint-selector-no-empty": "^1.0.8"
24
24
  },
@@ -26,6 +26,6 @@
26
26
  "semistandard": "~16.0.1"
27
27
  },
28
28
  "peerDependencies": {
29
- "stylelint": ">=10.1.0"
29
+ "stylelint": ">=14.6.0"
30
30
  }
31
31
  }