@swissgeo/config-stylelint 1.0.0-rc.1 → 1.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 (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +1 -0
  3. package/package.json +5 -5
package/README.md CHANGED
@@ -69,6 +69,10 @@ Extends `stylelint-config-recommended-scss` for comprehensive SCSS linting with
69
69
 
70
70
  Includes `stylelint-order` plugin for consistent CSS property ordering.
71
71
 
72
+ ### Ignore Files
73
+
74
+ By default, the configuration ignores all files in `**/dist/*.*`.
75
+
72
76
  ### Custom Rules
73
77
 
74
78
  - **Duplicate Selectors**: Disabled to follow Sass mixin expected behavior
package/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  export default {
2
+ ignoreFiles: ['**/dist/*.*'],
2
3
  extends: ['stylelint-config-recommended-vue', 'stylelint-config-recommended-scss'],
3
4
  plugins: ['stylelint-scss', 'stylelint-order'],
4
5
  overrides: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swissgeo/config-stylelint",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0",
4
4
  "description": "Shared Stylelint config for SWISSGEO projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,14 +14,14 @@
14
14
  "postcss-html": "^1.8.0",
15
15
  "stylelint-config-recommended-scss": "^16.0.2",
16
16
  "stylelint-config-recommended-vue": "^1.6.1",
17
- "stylelint-order": "^7.0.0",
18
- "stylelint-scss": "^6.12.1"
17
+ "stylelint-order": "^7.0.1",
18
+ "stylelint-scss": "^6.14.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "typescript": "^5.9.3",
22
- "@swissgeo/config-typescript": "1.0.0-rc.1"
22
+ "@swissgeo/config-typescript": "1.0.0"
23
23
  },
24
24
  "peerDependencies": {
25
- "stylelint": "^16.25.0"
25
+ "stylelint": "^16.26.1"
26
26
  }
27
27
  }