@massimo-cassandro/stylelint-config 1.1.5 → 1.1.7

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.
@@ -3,7 +3,7 @@
3
3
  module.exports = {
4
4
  extends: [
5
5
  'stylelint-config-twbs-bootstrap/'
6
- // 'stylelint-config-standard' // in twbs
6
+ // 'stylelint-config-standard' // in twb
7
7
  ],
8
8
  plugins: [
9
9
  // 'stylelint-order',
@@ -17,6 +17,13 @@ module.exports = {
17
17
  ],
18
18
 
19
19
  'rules': {
20
+
21
+ // order overrides
22
+ // https://github.com/stormwarning/stylelint-config-recess-order
23
+ // 'order/properties-order': {
24
+ // 'padding-inline-start'
25
+ // },
26
+
20
27
  'alpha-value-notation': null,
21
28
  'at-rule-no-vendor-prefix': true,
22
29
  'at-rule-no-unknown': [
@@ -32,12 +39,16 @@ module.exports = {
32
39
  'screen',
33
40
  'config',
34
41
 
42
+ // postcss
43
+ 'define-mixin',
44
+ 'mixin',
45
+
35
46
  // sass
36
47
  'extend',
37
48
  'include',
38
49
  'if',
39
50
  'else',
40
- 'mixin',
51
+ // 'mixin',
41
52
  'function',
42
53
  'at-root',
43
54
  'use',
@@ -140,218 +151,6 @@ module.exports = {
140
151
  ],
141
152
 
142
153
  'value-no-vendor-prefix': true
143
-
144
- // 'order/properties-order': [
145
- // 'position',
146
- // 'top',
147
- // 'right',
148
- // 'bottom',
149
- // 'left',
150
- // 'z-index',
151
- // 'box-sizing',
152
- // 'display',
153
- // 'flex',
154
- // 'flex-align',
155
- // 'flex-basis',
156
- // 'flex-direction',
157
- // 'flex-wrap',
158
- // 'flex-flow',
159
- // 'flex-shrink',
160
- // 'flex-grow',
161
- // 'flex-order',
162
- // 'flex-pack',
163
- // 'align-content',
164
- // 'align-items',
165
- // 'align-self',
166
- // 'justify-content',
167
- // 'order',
168
- // 'float',
169
- // 'width',
170
- // 'min-width',
171
- // 'max-width',
172
- // 'height',
173
- // 'min-height',
174
- // 'max-height',
175
- // 'padding',
176
- // 'padding-top',
177
- // 'padding-right',
178
- // 'padding-bottom',
179
- // 'padding-left',
180
- // 'margin',
181
- // 'margin-top',
182
- // 'margin-right',
183
- // 'margin-bottom',
184
- // 'margin-left',
185
- // 'overflow',
186
- // 'overflow-x',
187
- // 'overflow-y',
188
- // '-webkit-overflow-scrolling',
189
- // '-ms-overflow-x',
190
- // '-ms-overflow-y',
191
- // '-ms-overflow-style',
192
- // 'columns',
193
- // 'column-count',
194
- // 'column-fill',
195
- // 'column-gap',
196
- // 'column-rule',
197
- // 'column-rule-width',
198
- // 'column-rule-style',
199
- // 'column-rule-color',
200
- // 'column-span',
201
- // 'column-width',
202
- // 'orphans',
203
- // 'widows',
204
- // 'clip',
205
- // 'clear',
206
- // 'font',
207
- // 'font-family',
208
- // 'font-size',
209
- // 'font-style',
210
- // 'font-weight',
211
- // 'font-variant',
212
- // 'font-size-adjust',
213
- // 'font-stretch',
214
- // 'font-effect',
215
- // 'font-emphasize',
216
- // 'font-emphasize-position',
217
- // 'font-emphasize-style',
218
- // 'font-smooth',
219
- // 'src',
220
- // 'hyphens',
221
- // 'line-height',
222
- // 'color',
223
- // 'text-align',
224
- // 'text-align-last',
225
- // 'text-emphasis',
226
- // 'text-emphasis-color',
227
- // 'text-emphasis-style',
228
- // 'text-emphasis-position',
229
- // 'text-decoration',
230
- // 'text-indent',
231
- // 'text-justify',
232
- // 'text-outline',
233
- // '-ms-text-overflow',
234
- // 'text-overflow',
235
- // 'text-overflow-ellipsis',
236
- // 'text-overflow-mode',
237
- // 'text-shadow',
238
- // 'text-transform',
239
- // 'text-wrap',
240
- // '-webkit-text-size-adjust',
241
- // '-ms-text-size-adjust',
242
- // 'letter-spacing',
243
- // '-ms-word-break',
244
- // 'word-break',
245
- // 'word-spacing',
246
- // '-ms-word-wrap',
247
- // 'word-wrap',
248
- // 'overflow-wrap',
249
- // 'tab-size',
250
- // 'white-space',
251
- // 'vertical-align',
252
- // 'direction',
253
- // 'unicode-bidi',
254
- // 'list-style',
255
- // 'list-style-position',
256
- // 'list-style-type',
257
- // 'list-style-image',
258
- // 'pointer-events',
259
- // '-ms-touch-action',
260
- // 'touch-action',
261
- // 'cursor',
262
- // 'visibility',
263
- // 'zoom',
264
- // 'table-layout',
265
- // 'empty-cells',
266
- // 'caption-side',
267
- // 'border-spacing',
268
- // 'border-collapse',
269
- // 'content',
270
- // 'quotes',
271
- // 'counter-reset',
272
- // 'counter-increment',
273
- // 'resize',
274
- // 'user-select',
275
- // 'nav-index',
276
- // 'nav-up',
277
- // 'nav-right',
278
- // 'nav-down',
279
- // 'nav-left',
280
- // 'background',
281
- // 'background-color',
282
- // 'background-image',
283
- // 'filter',
284
- // 'background-repeat',
285
- // 'background-attachment',
286
- // 'background-position',
287
- // 'background-position-x',
288
- // 'background-position-y',
289
- // 'background-clip',
290
- // 'background-origin',
291
- // 'background-size',
292
- // 'border',
293
- // 'border-color',
294
- // 'border-style',
295
- // 'border-width',
296
- // 'border-top',
297
- // 'border-top-color',
298
- // 'border-top-style',
299
- // 'border-top-width',
300
- // 'border-right',
301
- // 'border-right-color',
302
- // 'border-right-style',
303
- // 'border-right-width',
304
- // 'border-bottom',
305
- // 'border-bottom-color',
306
- // 'border-bottom-style',
307
- // 'border-bottom-width',
308
- // 'border-left',
309
- // 'border-left-color',
310
- // 'border-left-style',
311
- // 'border-left-width',
312
- // 'border-radius',
313
- // 'border-top-left-radius',
314
- // 'border-top-right-radius',
315
- // 'border-bottom-right-radius',
316
- // 'border-bottom-left-radius',
317
- // 'border-image',
318
- // 'border-image-source',
319
- // 'border-image-slice',
320
- // 'border-image-width',
321
- // 'border-image-outset',
322
- // 'border-image-repeat',
323
- // 'outline',
324
- // 'outline-width',
325
- // 'outline-style',
326
- // 'outline-color',
327
- // 'outline-offset',
328
- // 'box-shadow',
329
- // 'opacity',
330
- // '-ms-interpolation-mode',
331
- // 'page-break-after',
332
- // 'page-break-before',
333
- // 'page-break-inside',
334
- // 'transition',
335
- // 'transition-delay',
336
- // 'transition-timing-function',
337
- // 'transition-duration',
338
- // 'transition-property',
339
- // 'transform',
340
- // 'transform-origin',
341
- // 'perspective',
342
- // 'appearance',
343
- // 'animation',
344
- // 'animation-name',
345
- // 'animation-duration',
346
- // 'animation-play-state',
347
- // 'animation-timing-function',
348
- // 'animation-delay',
349
- // 'animation-iteration-count',
350
- // 'animation-direction',
351
- // 'animation-fill-mode',
352
- // 'fill',
353
- // 'stroke'
354
- // ]
355
154
  },
356
155
  'overrides': [
357
156
  {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@massimo-cassandro/stylelint-config",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "my stylelint config",
5
5
  "author": "Massimo Cassandro",
6
6
  "license": "MIT",
7
- "main": "index.js",
7
+ "main": "index.cjs",
8
8
  "scripts": {
9
9
  "UPD-version": "npx update-version #--config=./dev-utilities.config.mjs",
10
10
  "upd@m": "npx upd@m",
@@ -25,17 +25,19 @@
25
25
  "stylelint"
26
26
  ],
27
27
  "files": [
28
- "index.js"
28
+ "index.cjs"
29
29
  ],
30
30
  "peerDependencies": {
31
- "@stylistic/stylelint-plugin": "^3.0.0",
32
- "stylelint": "^16.8.1",
31
+ "@stylistic/stylelint-plugin": "^3.0.1",
32
+ "stylelint": "^16.9.0",
33
33
  "stylelint-config-css-modules": "^4.4.0",
34
- "stylelint-config-twbs-bootstrap": "^14.2.0"
34
+ "stylelint-config-twbs-bootstrap": "^15.0.0"
35
35
  },
36
36
  "devDependencies": {
37
+ "@eslint/js": "^9.9.1",
37
38
  "@massimo-cassandro/dev-updater": "^1.0.4",
38
- "@massimo-cassandro/eslint-config": "^1.1.1",
39
- "eslint": "^8.57.0"
39
+ "@massimo-cassandro/eslint-config": "^2.0.4",
40
+ "eslint": "^9.9.1",
41
+ "globals": "^15.9.0"
40
42
  }
41
43
  }