@aarongoldenthal/stylelint-config-standard 19.0.0 → 20.0.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 (4) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -1
  3. package/index.js +5 -0
  4. package/package.json +11 -11
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 - 2024 Aaron Goldenthal
3
+ Copyright (c) 2021 - 2025 Aaron Goldenthal
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Stylelint Config Standard
2
2
 
3
- Custom standard StyleLint configuration for all projects. Includes all
3
+ Custom standard Stylelint configuration for all projects. Includes all
4
4
  referenced configurations and plugins as dependencies so they don't need
5
5
  to be included separately.
6
6
 
package/index.js CHANGED
@@ -32,6 +32,8 @@ export default {
32
32
  ],
33
33
  'annotation-no-unknown': true,
34
34
  'at-rule-allowed-list': null,
35
+ 'at-rule-descriptor-no-unknown': true,
36
+ 'at-rule-descriptor-value-no-unknown': true,
35
37
  'at-rule-disallowed-list': null,
36
38
  'at-rule-empty-line-before': [
37
39
  'always',
@@ -40,8 +42,10 @@ export default {
40
42
  ignore: ['after-comment']
41
43
  }
42
44
  ],
45
+ 'at-rule-no-deprecated': true,
43
46
  'at-rule-no-unknown': true,
44
47
  'at-rule-no-vendor-prefix': true,
48
+ 'at-rule-prelude-no-invalid': true,
45
49
  'at-rule-property-required-list': null,
46
50
  'block-no-empty': true,
47
51
  'color-function-notation': 'modern',
@@ -106,6 +110,7 @@ export default {
106
110
  'declaration-property-unit-disallowed-list': null,
107
111
  'declaration-property-value-allowed-list': null,
108
112
  'declaration-property-value-disallowed-list': null,
113
+ 'declaration-property-value-keyword-no-deprecated': true,
109
114
  'declaration-property-value-no-unknown': true,
110
115
  'font-family-name-quotes': 'always-where-recommended',
111
116
  'font-family-no-duplicate-names': true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/stylelint-config-standard",
3
- "version": "19.0.0",
3
+ "version": "20.0.0",
4
4
  "description": "Standard StyleLint configuration settings",
5
5
  "exports": "./index.js",
6
6
  "type": "module",
@@ -35,21 +35,21 @@
35
35
  },
36
36
  "homepage": "https://gitlab.com/gitlab-ci-utils/node/stylelint-config-standard",
37
37
  "dependencies": {
38
- "postcss-html": "1.7.0",
39
- "stylelint-declaration-strict-value": "1.10.6",
38
+ "postcss-html": "1.8.0",
39
+ "stylelint-declaration-strict-value": "1.10.7",
40
40
  "stylelint-order": "6.0.4",
41
41
  "stylelint-use-logical-spec": "5.0.1"
42
42
  },
43
43
  "devDependencies": {
44
- "@aarongoldenthal/eslint-config-standard": "33.0.1",
45
- "@vitest/coverage-v8": "2.1.6",
46
- "eslint": "9.16.0",
47
- "markdownlint-cli2": "0.15.0",
48
- "prettier": "3.4.1",
49
- "stylelint": "16.11.0",
50
- "vitest": "2.1.6"
44
+ "@aarongoldenthal/eslint-config-standard": "34.0.0",
45
+ "@vitest/coverage-v8": "3.0.4",
46
+ "eslint": "9.19.0",
47
+ "markdownlint-cli2": "0.17.2",
48
+ "prettier": "3.4.2",
49
+ "stylelint": "16.14.0",
50
+ "vitest": "3.0.4"
51
51
  },
52
52
  "peerDependencies": {
53
- "stylelint": "^16.11.0"
53
+ "stylelint": "^16.14.0"
54
54
  }
55
55
  }