@aarongoldenthal/stylelint-config-standard 4.0.0 → 7.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.
package/index.js CHANGED
@@ -14,12 +14,17 @@ module.exports = {
14
14
  }
15
15
  }
16
16
  ],
17
+ plugins: [
18
+ 'stylelint-csstree-validator'
19
+ ],
17
20
  reportDescriptionlessDisables: true,
18
21
  reportInvalidScopeDisables: true,
19
22
  reportNeedlessDisables: true,
20
23
  rules: {
21
24
  'color-hex-length': 'long',
25
+ 'font-family-name-quotes': 'always-where-recommended',
22
26
  'indentation': 4,
23
- 'unit-allowed-list': ['%', 'em', 'fr', 'rem', 's', 'px', 'vh']
27
+ 'unit-allowed-list': ['%', 'em', 'fr', 'rem', 's', 'px', 'vh'],
28
+ 'csstree/validator': true
24
29
  }
25
30
  };
package/license CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Aaron Goldenthal
3
+ Copyright (c) 2021 - 2022 Aaron Goldenthal
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aarongoldenthal/stylelint-config-standard",
3
- "version": "4.0.0",
3
+ "version": "7.0.0",
4
4
  "description": "Standard StyleLint configuration settings",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -30,16 +30,17 @@
30
30
  },
31
31
  "homepage": "https://gitlab.com/gitlab-ci-utils/stylelint-config-standard#readme",
32
32
  "dependencies": {
33
- "postcss-html": "^1.0.1",
34
- "stylelint-config-standard": "^23.0.0"
33
+ "postcss-html": "^1.3.0",
34
+ "stylelint-config-standard": "^25.0.0",
35
+ "stylelint-csstree-validator": "^2.0.0"
35
36
  },
36
37
  "devDependencies": {
37
- "@aarongoldenthal/eslint-config-standard": "^10.0.0",
38
- "eslint": "^8.1.0",
39
- "jest": "^27.3.1",
38
+ "@aarongoldenthal/eslint-config-standard": "^11.0.0",
39
+ "eslint": "^8.8.0",
40
+ "jest": "^27.5.1",
40
41
  "jest-junit": "^13.0.0",
41
- "markdownlint-cli": "^0.29.0",
42
- "stylelint": "^14.0.0"
42
+ "markdownlint-cli": "^0.31.0",
43
+ "stylelint": "^14.4.0"
43
44
  },
44
45
  "peerDependencies": {
45
46
  "stylelint": "^14.0.0"
package/CHANGELOG.md DELETED
@@ -1,65 +0,0 @@
1
- # Changelog
2
-
3
- ## 4.0.0 (2021-10-22)
4
-
5
- ### Changed
6
-
7
- - BREAKING: Updated to `stylelint` v14
8
- - Added `post-css` to parse `.html` and `.handlebars` syntax
9
- - BREAKING: Update to `stylelint-config-standard` v23
10
-
11
- ### Fixed
12
-
13
- - Updated to latest dependencies
14
-
15
- ### Miscellaneous
16
-
17
- - Move `jest` config to separate file (#9)
18
-
19
- ## v3.0.1 (2021-08-29)
20
-
21
- ### Fixed
22
-
23
- - Updated to latest dependencies
24
-
25
- ### Miscellaneous
26
-
27
- - Integrate [renovate](https://docs.renovatebot.com/) for automatic dependency updates (#6)
28
-
29
- ## v3.0.0 (2021-05-31)
30
-
31
- ### Changed
32
-
33
- - BREAKING: Deprecated support for Node 10 and 15 since end-of-life. Compatible with all current and LTS releases (`^12.20.0 || ^14.15.0 || >=16.0.0`). (#4)
34
-
35
- ### Fixed
36
-
37
- - Updated to latest dependencies
38
-
39
- ## v2.0.1 (2021-05-09)
40
-
41
- ### Fixed
42
-
43
- - Updated to latest dependencies, including resolving vulnerabilities
44
-
45
- ### Miscellaneous
46
-
47
- - Optimize published package to only include the minimum required files (#3)
48
-
49
- ## v2.0.0 (2021-03-13)
50
-
51
- ### Changed
52
-
53
- - BREAKING: Updated to `stylelint-config-standard` v21.0.0
54
-
55
- ### Fixed
56
-
57
- - Updated to latest dependencies, including resolving vulnerabilities
58
-
59
- ### Miscellaneous
60
-
61
- - Updated pipeline to use standard NPM package collection (#2)
62
-
63
- ## v1.0.0 (2021-02-15)
64
-
65
- Initial release