@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.
- package/index.cjs +16 -6
- 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
|
-
'
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
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
|
-
'
|
|
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.
|
|
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.
|
|
32
|
+
"@massimo-cassandro/dev-updater": "^2.1.0",
|
|
33
33
|
"@massimo-cassandro/eslint-config": "^2.0.6",
|
|
34
|
-
"eslint": "^9.
|
|
35
|
-
"globals": "^16.
|
|
34
|
+
"eslint": "^9.32.0",
|
|
35
|
+
"globals": "^16.3.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@stylistic/stylelint-plugin": "^
|
|
39
|
-
"stylelint": "^16.
|
|
40
|
-
"stylelint-config-css-modules": "^4.
|
|
41
|
-
"stylelint-config-twbs-bootstrap": "^16.
|
|
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
|
}
|