stylelint-config-nick2bad4u 2.0.1 → 2.2.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.
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # stylelint-config-nick2bad4u
2
2
 
3
- [![CI](https://github.com/Nick2bad4u/stylelint-config-nick2bad4u/actions/workflows/ci.yml/badge.svg)](https://github.com/Nick2bad4u/stylelint-config-nick2bad4u/actions/workflows/ci.yml)
4
- [![npm version](https://img.shields.io/npm/v/stylelint-config-nick2bad4u.svg)](https://www.npmjs.com/package/stylelint-config-nick2bad4u)
5
- [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
3
+ [![NPM license.](https://flat.badgen.net/npm/license/eslint-plugin-typefest?color=purple)](https://github.com/Nick2bad4u/eslint-plugin-typefest/blob/main/LICENSE) [![NPM total downloads.](https://flat.badgen.net/npm/dt/eslint-plugin-typefest?color=pink)](https://www.npmjs.com/package/eslint-plugin-typefest) [![Latest GitHub release.](https://flat.badgen.net/github/release/Nick2bad4u/eslint-plugin-typefest?color=cyan)](https://github.com/Nick2bad4u/eslint-plugin-typefest/releases) [![GitHub stars.](https://flat.badgen.net/github/stars/Nick2bad4u/eslint-plugin-typefest?color=yellow)](https://github.com/Nick2bad4u/eslint-plugin-typefest/stargazers) [![GitHub forks.](https://flat.badgen.net/github/forks/Nick2bad4u/eslint-plugin-typefest?color=green)](https://github.com/Nick2bad4u/eslint-plugin-typefest/forks) [![GitHub open issues.](https://flat.badgen.net/github/open-issues/Nick2bad4u/eslint-plugin-typefest?color=red)](https://github.com/Nick2bad4u/eslint-plugin-typefest/issues) [![Codecov.](https://flat.badgen.net/codecov/github/Nick2bad4u/eslint-plugin-typefest?color=blue)](https://codecov.io/gh/Nick2bad4u/eslint-plugin-typefest)
6
4
 
7
5
  Shared Stylelint config for Nick2bad4u projects.
8
6
 
@@ -348,9 +348,6 @@ const config = {
348
348
  * @see {@link https://github.com/double-great/stylelint-a11y | @double-great/stylelint-a11y}
349
349
  */
350
350
  "@double-great/stylelint-a11y", // Accessibility rules
351
- /*
352
- * Core functional plugins for CSS best practices and performance.
353
- */
354
351
  // Core functional plugins
355
352
  "stylelint-plugin-defensive-css",
356
353
  "stylelint-plugin-font",
@@ -358,24 +355,15 @@ const config = {
358
355
  "stylelint-use-nesting",
359
356
  "stylelint-prettier",
360
357
  "stylelint-high-performance-animation",
361
- /*
362
- * Modern CSS standards and feature plugins.
363
- */
364
358
  // Modern CSS and Standards plugins
365
359
  "@stylistic/stylelint-plugin", // Styling rules removed in Stylelint 16
366
360
  "stylelint-scales", // Enforce numeric value scales
367
361
  "stylelint-media-use-custom-media", // Enforce custom media queries
368
362
  "stylelint-plugin-use-baseline", // Enforce CSS features in baseline
369
363
  "stylelint-value-no-unknown-custom-properties", // Validate custom properties
370
- /*
371
- * Browser compatibility and cross-platform plugins.
372
- */
373
364
  // Browser compatibility plugins
374
365
  "stylelint-no-browser-hacks", // Disallow browser hacks
375
366
  "stylelint-no-unsupported-browser-features", // Check browser support
376
- /*
377
- * Code organization and maintenance utility plugins.
378
- */
379
367
  // Utility plugins
380
368
  "stylelint-order",
381
369
  "stylelint-declaration-block-no-ignored-properties",
@@ -710,6 +698,12 @@ const config = {
710
698
  "defensive-css/require-flex-wrap": null,
711
699
  "defensive-css/require-focus-visible": null,
712
700
  "defensive-css/require-forced-colors-focus": null,
701
+ "defensive-css/require-grid-minmax": [
702
+ true,
703
+ {
704
+ severity: "warning",
705
+ },
706
+ ],
713
707
  "defensive-css/require-named-grid-lines": [
714
708
  true,
715
709
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "stylelint-config-nick2bad4u",
4
- "version": "2.0.1",
4
+ "version": "2.2.0",
5
5
  "private": false,
6
6
  "description": "Shared Stylelint config for Nick2bad4u projects.",
7
7
  "keywords": [
@@ -93,17 +93,17 @@
93
93
  "types:update": "npx typesync",
94
94
  "update-actions": "npx actions-up --yes --style sha",
95
95
  "update-all": "npm run update-actions && npm run update-deps",
96
- "update-deps": "npx ncu --configFileName .ncurc.json --configFilePath node_modules/ncu-config-nick2bad4u && npm run sync:package-manager-version && npm run sync:peer-stylelint && npm run sync:node-version && npx cross-env npm_config_allow_scripts= npm install",
96
+ "update-deps": "npx ncu --configFileName .ncurc.json --configFilePath node_modules/ncu-config-nick2bad4u && npm run sync:package-manager-version && npm run sync:peer-stylelint && npm run sync:node-version && npx cross-env npm_config_allow_scripts= npm update --all",
97
97
  "verify": "npm run release:verify"
98
98
  },
99
99
  "dependencies": {
100
- "@double-great/stylelint-a11y": "^3.5.0",
101
- "@stylistic/stylelint-plugin": "^5.2.1",
100
+ "@double-great/stylelint-a11y": "^3.5.2",
101
+ "@stylistic/stylelint-plugin": "^5.3.0",
102
102
  "postcss-html": "^2.0.0",
103
103
  "postcss-scss": "^4.0.9",
104
104
  "postcss-styled-jsx": "^1.0.1",
105
105
  "postcss-styled-syntax": "^0.7.2",
106
- "stylelint-config-recess-order": "^7.7.0",
106
+ "stylelint-config-recess-order": "^7.8.0",
107
107
  "stylelint-config-standard": "^40.0.0",
108
108
  "stylelint-config-standard-scss": "^17.0.0",
109
109
  "stylelint-config-tailwindcss": "^1.0.1",
@@ -116,12 +116,12 @@
116
116
  "stylelint-no-browser-hacks": "^2.0.3",
117
117
  "stylelint-no-unsupported-browser-features": "^8.1.1",
118
118
  "stylelint-order": "^8.1.1",
119
- "stylelint-plugin-container-query-sanity": "^0.1.3",
120
- "stylelint-plugin-css-performance-budget": "^2.0.6",
121
- "stylelint-plugin-defensive-css": "^2.9.4",
122
- "stylelint-plugin-docusaurus": "^2.0.4",
123
- "stylelint-plugin-font": "^1.1.5",
124
- "stylelint-plugin-grid": "^1.0.4",
119
+ "stylelint-plugin-container-query-sanity": "^0.1.4",
120
+ "stylelint-plugin-css-performance-budget": "^2.0.7",
121
+ "stylelint-plugin-defensive-css": "^2.9.6",
122
+ "stylelint-plugin-docusaurus": "^2.0.5",
123
+ "stylelint-plugin-font": "^1.1.6",
124
+ "stylelint-plugin-grid": "^1.0.6",
125
125
  "stylelint-plugin-use-baseline": "^1.4.5",
126
126
  "stylelint-prettier": "^5.0.3",
127
127
  "stylelint-scales": "^5.0.0",
@@ -132,25 +132,25 @@
132
132
  "devDependencies": {
133
133
  "@arethetypeswrong/cli": "^0.18.5",
134
134
  "@microsoft/tsdoc-config": "^0.18.1",
135
- "@types/node": "^26.1.2",
136
- "@vitest/coverage-v8": "^4.1.10",
135
+ "@types/node": "^26.2.0",
136
+ "@vitest/coverage-v8": "^4.1.11",
137
137
  "cross-env": "^10.1.0",
138
- "eslint": "^10.8.0",
139
- "eslint-config-nick2bad4u": "^12.0.1",
138
+ "eslint": "^10.8.1",
139
+ "eslint-config-nick2bad4u": "^14.1.0",
140
140
  "git-cliff": "^2.13.1",
141
- "gitcliff-config-nick2bad4u": "^1.4.0",
142
- "gitleaks-config-nick2bad4u": "^1.0.4",
143
- "jscpd": "^5.0.14",
144
- "jscpd-config-nick2bad4u": "^1.1.0",
145
- "lychee-config-nick2bad4u": "^2.0.0",
141
+ "gitcliff-config-nick2bad4u": "^1.5.0",
142
+ "gitleaks-config-nick2bad4u": "^1.0.5",
143
+ "jscpd": "^5.0.16",
144
+ "jscpd-config-nick2bad4u": "^1.1.1",
145
+ "lychee-config-nick2bad4u": "^3.0.0",
146
146
  "ncu-config-nick2bad4u": "^0.2.1",
147
- "npm-check-updates": "^23.0.0",
148
- "npm-package-json-lint": "^10.4.1",
147
+ "npm-check-updates": "^23.0.2",
148
+ "npm-package-json-lint": "^11.0.0",
149
149
  "npm-package-json-lint-config-nick2bad4u": "^1.0.4",
150
150
  "picocolors": "^1.1.1",
151
151
  "prettier": "^3.9.6",
152
- "prettier-config-nick2bad4u": "^2.0.1",
153
- "publint": "^0.3.22",
152
+ "prettier-config-nick2bad4u": "^2.0.2",
153
+ "publint": "^0.3.24",
154
154
  "remark": "^15.0.1",
155
155
  "remark-cli": "^12.0.1",
156
156
  "remark-config-nick2bad4u": "^1.1.3",
@@ -158,11 +158,11 @@
158
158
  "secretlint-config-nick2bad4u": "^1.1.2",
159
159
  "sort-package-json": "^4.0.0",
160
160
  "stylelint": "^17.14.1",
161
- "stylelint-config-inspector": "^2.3.4",
161
+ "stylelint-config-inspector": "^2.3.5",
162
162
  "tsdoc-config-nick2bad4u": "^1.0.6",
163
163
  "typescript": "^6.0.3",
164
- "vite": "^8.2.0",
165
- "vitest": "^4.1.10",
164
+ "vite": "^8.2.2",
165
+ "vitest": "^4.1.11",
166
166
  "yamllint-config-nick2bad4u": "^1.1.1"
167
167
  },
168
168
  "peerDependencies": {
@@ -194,10 +194,10 @@
194
194
  "registry": "https://registry.npmjs.org/"
195
195
  },
196
196
  "allowScripts": {
197
- "esbuild@0.27.7 || 0.28.1": true,
198
197
  "fsevents@2.3.3": true,
199
198
  "unrs-resolver@1.12.2": true,
200
- "core-js": false
199
+ "core-js": false,
200
+ "esbuild@0.28.2": true
201
201
  },
202
202
  "readme": "README.md"
203
203
  }