@dg-scripts/stylelint-config 6.0.0 → 6.1.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+ # [6.1.0](https://github.com/sabertazimi/bod/compare/v6.0.0...v6.1.0) (2026-01-11)
7
+
8
+
9
+ ### Features
10
+
11
+ * **stylelint-config:** remove Prettier integration ([#1478](https://github.com/sabertazimi/bod/issues/1478)) ([665ea65](https://github.com/sabertazimi/bod/commit/665ea6548cd7ae13f1115d8a95394fb3f8680bae))
12
+
13
+
14
+
15
+
16
+
6
17
  # [6.0.0](https://github.com/sabertazimi/bod/compare/v5.21.8...v6.0.0) (2025-12-19)
7
18
 
8
19
 
package/README.md CHANGED
@@ -9,7 +9,6 @@
9
9
 
10
10
  [![CI](https://img.shields.io/github/actions/workflow/status/sabertazimi/bod/ci.yml?branch=main&style=for-the-badge&logo=github)](https://github.com/sabertazimi/bod/actions/workflows/ci.yml)
11
11
  [![Vitest Coverage](https://img.shields.io/codecov/c/github/sabertazimi/bod?logo=codecov&style=for-the-badge)](https://codecov.io/gh/sabertazimi/bod)
12
- [![Vitest Coverage](http://raw.githubusercontent.com/sabertazimi/bod/refs/heads/gh-pages/coverage-lines.svg)](https://github.com/sabertazimi/bod/actions/workflows/ci.yml)
13
12
 
14
13
  This package includes the shareable StyleLint configuration used by [Bod CLI](https://github.com/sabertazimi/bod).
15
14
 
@@ -54,7 +53,6 @@ to change the indentation to tabs and turn off the number-leading-zero rule:
54
53
  - SCSS Support with [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss).
55
54
  - Markdown Support with [postcss-markdown](https://github.com/ota-meshi/postcss-markdown).
56
55
  - Tailwind CSS Support (ignores Tailwind at-rules).
57
- - Prettier Integration with [stylelint-prettier](https://github.com/prettier/stylelint-prettier).
58
56
 
59
57
  ## Reference
60
58
 
package/index.js CHANGED
@@ -4,7 +4,6 @@ module.exports = {
4
4
  'stylelint-config-standard',
5
5
  'stylelint-config-recess-order',
6
6
  ],
7
- plugins: ['stylelint-prettier'],
8
7
  rules: {
9
8
  'at-rule-no-deprecated': [
10
9
  true,
@@ -55,7 +54,6 @@ module.exports = {
55
54
  'import-notation': [
56
55
  'string',
57
56
  ],
58
- 'prettier/prettier': true,
59
57
  },
60
58
  overrides: [
61
59
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dg-scripts/stylelint-config",
3
- "version": "6.0.0",
3
+ "version": "6.1.0",
4
4
  "description": "StyleLint configuration used by dg-scripts.",
5
5
  "author": "sabertazimi <sabertazimi@gmail.com>",
6
6
  "license": "MIT",
@@ -22,13 +22,11 @@
22
22
  "linter",
23
23
  "order",
24
24
  "idomatic-css",
25
- "prettier",
26
25
  "standard",
27
26
  "stylelint",
28
27
  "stylelint-config",
29
28
  "stylelint-order",
30
29
  "stylelint-plugin",
31
- "stylelint-prettier",
32
30
  "stylelint-standard"
33
31
  ],
34
32
  "main": "index.js",
@@ -43,7 +41,6 @@
43
41
  "lint:fix": "stylelint CHANGELOG.md --config=index.js --fix"
44
42
  },
45
43
  "peerDependencies": {
46
- "prettier": "^3.0.0",
47
44
  "stylelint": "^16.0.0"
48
45
  },
49
46
  "dependencies": {
@@ -52,12 +49,10 @@
52
49
  "stylelint-config-html": "^1.1.0",
53
50
  "stylelint-config-recess-order": "^7.4.0",
54
51
  "stylelint-config-standard": "^39.0.1",
55
- "stylelint-config-standard-scss": "^16.0.0",
56
- "stylelint-prettier": "^5.0.3"
52
+ "stylelint-config-standard-scss": "^16.0.0"
57
53
  },
58
54
  "devDependencies": {
59
- "prettier": "^3.7.4",
60
55
  "stylelint": "^16.26.1"
61
56
  },
62
- "gitHead": "c98290e1b374fdcffa21acd39ab8dac42d8d156d"
57
+ "gitHead": "6a7723d64ab1a869cec85bf8c9f11fdb1e200ec9"
63
58
  }