@massimo-cassandro/stylelint-config 1.1.9 → 1.1.11

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.cjs +16 -6
  2. package/package.json +8 -8
package/index.cjs CHANGED
@@ -1,5 +1,6 @@
1
1
  /* eslint-env node */
2
2
 
3
+
3
4
  module.exports = {
4
5
  extends: [
5
6
  'stylelint-config-twbs-bootstrap/'
@@ -10,10 +11,12 @@ module.exports = {
10
11
  '@stylistic/stylelint-plugin'
11
12
  ],
12
13
  'ignoreFiles': [
13
- '**/node_modules/**/*.*',
14
- '**/vendor/**/*.*',
15
- '**/build/**/*.*',
16
- '**/dist/**/*.*'
14
+ 'node_modules/**/*.*',
15
+ 'vendor/**/*.*',
16
+ 'build/**/*.*',
17
+ 'public/**/*.*',
18
+ 'templates/**/*.*',
19
+ 'dist/**/*.*'
17
20
  ],
18
21
 
19
22
  'rules': {
@@ -119,8 +122,14 @@ module.exports = {
119
122
  }
120
123
  ],
121
124
  'selector-no-vendor-prefix': true,
122
- 'shorthand-property-no-redundant-values': true,
125
+ 'selector-pseudo-class-no-unknown': [
126
+ true,
127
+ {
128
+ "ignorePseudoClasses": ["global"]
129
+ }
130
+ ],
123
131
 
132
+ 'shorthand-property-no-redundant-values': true,
124
133
  // 'shorthand-property-no-redundant-values': [
125
134
  // true,
126
135
  // {
@@ -128,6 +137,7 @@ module.exports = {
128
137
  // }
129
138
  // ],
130
139
 
140
+
131
141
  // =>> stylistic
132
142
  // https://github.com/elirasza/stylelint-stylistic
133
143
  '@stylistic/function-max-empty-lines': 2,
@@ -230,7 +240,7 @@ module.exports = {
230
240
  {
231
241
  resolveNestedSelectors: true
232
242
  }
233
- ],
243
+ ]
234
244
  }
235
245
  }
236
246
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massimo-cassandro/stylelint-config",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "description": "my stylelint config",
5
5
  "author": "Massimo Cassandro",
6
6
  "license": "MIT",
@@ -29,15 +29,15 @@
29
29
  ],
30
30
  "devDependencies": {
31
31
  "@eslint/js": "^9.23.0",
32
- "@massimo-cassandro/dev-updater": "^2.0.0",
32
+ "@massimo-cassandro/dev-updater": "^2.1.0",
33
33
  "@massimo-cassandro/eslint-config": "^2.0.6",
34
- "eslint": "^9.23.0",
35
- "globals": "^16.0.0"
34
+ "eslint": "^9.32.0",
35
+ "globals": "^16.3.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@stylistic/stylelint-plugin": "^3.1.2",
39
- "stylelint": "^16.17.0",
40
- "stylelint-config-css-modules": "^4.4.0",
41
- "stylelint-config-twbs-bootstrap": "^16.0.0"
38
+ "@stylistic/stylelint-plugin": "^4.0.0",
39
+ "stylelint": "^16.23.0",
40
+ "stylelint-config-css-modules": "^4.5.1",
41
+ "stylelint-config-twbs-bootstrap": "^16.1.0"
42
42
  }
43
43
  }