weboptimizer 2.0.1096 → 2.0.1097

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 (1) hide show
  1. package/package.json +34 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1096",
3
+ "version": "2.0.1097",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -1395,8 +1395,40 @@
1395
1395
  "extends": "stylelint-config-standard",
1396
1396
  "ignoreFiles": "**/node_modules/*",
1397
1397
  "rules": {
1398
+ "at-rule-empty-line-before": [
1399
+ "always",
1400
+ {
1401
+ "except": [
1402
+ "after-same-name",
1403
+ "first-nested"
1404
+ ],
1405
+ "ignore": [
1406
+ "after-comment",
1407
+ "blockless-after-same-name-blockless"
1408
+ ]
1409
+ }
1410
+ ],
1398
1411
  "comment-empty-line-before": "never",
1399
- "indentation": 4
1412
+ "declaration-empty-line-before": [
1413
+ "always",
1414
+ {
1415
+ "except": [
1416
+ "first-nested"
1417
+ ],
1418
+ "ignore": [
1419
+ "after-comment",
1420
+ "after-declaration",
1421
+ "inside-single-line-block"
1422
+ ]
1423
+ }
1424
+ ],
1425
+ "indentation": 4,
1426
+ "selector-class-pattern": [
1427
+ "^([a-z][a-z0-9]*)(((--?)|(__))[a-z0-9]+)*$",
1428
+ {
1429
+ "message": "Expected class selector to follow the \"BEM\" naming."
1430
+ }
1431
+ ]
1400
1432
  }
1401
1433
  },
1402
1434
  "targetTechnology": {