@aarongoldenthal/stylelint-config-standard 3.0.1 → 4.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/CHANGELOG.md +17 -1
- package/index.js +12 -0
- package/package.json +11 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
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
|
+
|
|
3
19
|
## v3.0.1 (2021-08-29)
|
|
4
20
|
|
|
5
21
|
### Fixed
|
|
@@ -8,7 +24,7 @@
|
|
|
8
24
|
|
|
9
25
|
### Miscellaneous
|
|
10
26
|
|
|
11
|
-
- Integrate [renovate](https://docs.renovatebot.com/) for automatic dependency updates (#
|
|
27
|
+
- Integrate [renovate](https://docs.renovatebot.com/) for automatic dependency updates (#6)
|
|
12
28
|
|
|
13
29
|
## v3.0.0 (2021-05-31)
|
|
14
30
|
|
package/index.js
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
module.exports = {
|
|
4
4
|
extends: 'stylelint-config-standard',
|
|
5
|
+
overrides: [
|
|
6
|
+
{
|
|
7
|
+
files: [
|
|
8
|
+
'**/*.html',
|
|
9
|
+
'**/*.handlebars'
|
|
10
|
+
],
|
|
11
|
+
customSyntax: 'postcss-html',
|
|
12
|
+
rules: {
|
|
13
|
+
indentation: 'tab'
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
],
|
|
5
17
|
reportDescriptionlessDisables: true,
|
|
6
18
|
reportInvalidScopeDisables: true,
|
|
7
19
|
reportNeedlessDisables: true,
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarongoldenthal/stylelint-config-standard",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Standard StyleLint configuration settings",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"test": "jest --ci",
|
|
7
|
+
"test": "jest --ci --config jest.config.json",
|
|
8
8
|
"lint-js": "eslint \"**/*.js\"",
|
|
9
9
|
"lint-md": "markdownlint **/*.md --ignore node_modules",
|
|
10
10
|
"lint": "npm run lint-js && npm run lint-md",
|
|
@@ -30,37 +30,18 @@
|
|
|
30
30
|
},
|
|
31
31
|
"homepage": "https://gitlab.com/gitlab-ci-utils/stylelint-config-standard#readme",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"
|
|
33
|
+
"postcss-html": "^1.0.1",
|
|
34
|
+
"stylelint-config-standard": "^23.0.0"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
|
-
"@aarongoldenthal/eslint-config-standard": "^
|
|
37
|
-
"eslint": "^
|
|
38
|
-
"jest": "^27.1
|
|
39
|
-
"jest-junit": "^
|
|
40
|
-
"markdownlint-cli": "^0.
|
|
41
|
-
"stylelint": "^
|
|
37
|
+
"@aarongoldenthal/eslint-config-standard": "^10.0.0",
|
|
38
|
+
"eslint": "^8.1.0",
|
|
39
|
+
"jest": "^27.3.1",
|
|
40
|
+
"jest-junit": "^13.0.0",
|
|
41
|
+
"markdownlint-cli": "^0.29.0",
|
|
42
|
+
"stylelint": "^14.0.0"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
44
|
-
"stylelint": "^
|
|
45
|
-
},
|
|
46
|
-
"jest": {
|
|
47
|
-
"collectCoverage": true,
|
|
48
|
-
"collectCoverageFrom": [
|
|
49
|
-
"**/*.js",
|
|
50
|
-
"!**/coverage/**"
|
|
51
|
-
],
|
|
52
|
-
"reporters": [
|
|
53
|
-
"default",
|
|
54
|
-
[
|
|
55
|
-
"jest-junit",
|
|
56
|
-
{
|
|
57
|
-
"suiteNameTemplate": "{filename}",
|
|
58
|
-
"classNameTemplate": "{classname}",
|
|
59
|
-
"titleTemplate": "{title}"
|
|
60
|
-
}
|
|
61
|
-
]
|
|
62
|
-
],
|
|
63
|
-
"verbose": true,
|
|
64
|
-
"testEnvironment": "node"
|
|
45
|
+
"stylelint": "^14.0.0"
|
|
65
46
|
}
|
|
66
47
|
}
|