stylelint-config-ccb 1.8.7 → 1.9.1

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 +10 -12
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -284,10 +284,8 @@ module.exports = {
284
284
  '-webkit-perspective-origin-y',
285
285
  '-webkit-rtl-ordering',
286
286
  '-webkit-svg-shadow',
287
- '-webkit-tap-highlight-color',
288
287
  '-webkit-text-decoration-skip',
289
288
  '-webkit-text-decorations-in-effect',
290
- '-webkit-text-fill-color',
291
289
  '-webkit-text-security',
292
290
  '-webkit-text-stroke',
293
291
  '-webkit-text-stroke-color',
@@ -299,6 +297,12 @@ module.exports = {
299
297
  '-webkit-user-drag',
300
298
  '-webkit-user-modify',
301
299
 
300
+ /* webkit-only allowed
301
+ '-webkit-text-fill-color',
302
+ '-webkit-tap-highlight-color',
303
+ '-webkit-user-drag', // for now, html[draggable="true"] is preferred
304
+ */
305
+
302
306
  /* deprecated safari webkit properties, see:
303
307
  https://webkit.org/blog/12445/new-webkit-features-in-safari-15-4/ */
304
308
  '-webkit-alt*',
@@ -376,7 +380,6 @@ module.exports = {
376
380
  'alt*',
377
381
  'animation-trigger',
378
382
  'app-region',
379
- 'appearance',
380
383
  'aspect-ratio',
381
384
  'backdrop-filter',
382
385
  'backface-visibility',
@@ -431,7 +434,6 @@ module.exports = {
431
434
  'context-properties',
432
435
  'cursor-visibility',
433
436
  'dashboard-region',
434
- 'filter',
435
437
  'float-edge',
436
438
  'flow-from',
437
439
  'flow-into',
@@ -540,11 +542,9 @@ module.exports = {
540
542
  'shape-inside',
541
543
  'stack-sizing',
542
544
  'svg-shadow',
543
- 'tap-highlight-color',
544
545
  'text-autospace',
545
546
  'text-combine-upright',
546
547
  'text-decorations-in-effect',
547
- 'text-fill-color',
548
548
  'text-security',
549
549
  'text-stroke',
550
550
  'text-stroke',
@@ -556,7 +556,6 @@ module.exports = {
556
556
  'transform-origin-x',
557
557
  'transform-origin-y',
558
558
  'transform-origin-z',
559
- 'user-drag',
560
559
  'user-focus',
561
560
  'user-input',
562
561
  'user-modify',
@@ -611,16 +610,15 @@ module.exports = {
611
610
  'declaration-colon-newline-after': null,
612
611
  'value-list-comma-newline-after': null,
613
612
  'selector-descendant-combinator-no-non-space': null,
614
- 'selector-combinator-space-before': null
615
- */
616
-
617
- /* prettier-conflicts, prefer prettier */
613
+ 'selector-combinator-space-before': null,
618
614
  'max-line-length': 80,
615
+ */
619
616
 
620
617
  'prettier/prettier': [
621
618
  true,
622
619
  {
623
- quoteProps: 'preserve'
620
+ quoteProps: 'preserve',
621
+ printWidth: 120
624
622
  }
625
623
  ],
626
624
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stylelint-config-ccb",
3
- "version": "1.8.7",
3
+ "version": "1.9.1",
4
4
  "description": "Stylelint config which extends stylelint-config-standard",
5
5
  "keywords": [
6
6
  "stylelint",
@@ -17,7 +17,7 @@
17
17
  "index.js"
18
18
  ],
19
19
  "dependencies": {
20
- "prettier": "^2.6.0",
20
+ "prettier": "^2.6.1",
21
21
  "stylelint-color-format": "^1.1.0",
22
22
  "stylelint-config-standard": "^25.0.0",
23
23
  "stylelint-order": "^5.0.0",