@aarongoldenthal/stylelint-config-standard 2.0.1 → 4.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/index.js +12 -0
  3. package/package.json +13 -32
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.1.0 (2021-10-24)
4
+
5
+ ### Changed
6
+
7
+ - Updated to `postcss-html` v1.1, which allows single line disables (see [documentation](https://github.com/ota-meshi/postcss-html#turning-postcss-off-from-within-your-html)).
8
+
9
+ ## 4.0.0 (2021-10-22)
10
+
11
+ ### Changed
12
+
13
+ - BREAKING: Updated to `stylelint` v14
14
+ - Added `post-css` to parse `.html` and `.handlebars` syntax
15
+ - BREAKING: Update to `stylelint-config-standard` v23
16
+
17
+ ### Fixed
18
+
19
+ - Updated to latest dependencies
20
+
21
+ ### Miscellaneous
22
+
23
+ - Move `jest` config to separate file (#9)
24
+
25
+ ## v3.0.1 (2021-08-29)
26
+
27
+ ### Fixed
28
+
29
+ - Updated to latest dependencies
30
+
31
+ ### Miscellaneous
32
+
33
+ - Integrate [renovate](https://docs.renovatebot.com/) for automatic dependency updates (#6)
34
+
35
+ ## v3.0.0 (2021-05-31)
36
+
37
+ ### Changed
38
+
39
+ - 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)
40
+
41
+ ### Fixed
42
+
43
+ - Updated to latest dependencies
44
+
3
45
  ## v2.0.1 (2021-05-09)
4
46
 
5
47
  ### Fixed
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": "2.0.1",
3
+ "version": "4.1.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",
@@ -17,10 +17,10 @@
17
17
  "keywords": [
18
18
  "stylelint"
19
19
  ],
20
- "author": "Aaron Goldenthal",
20
+ "author": "Aaron Goldenthal <npm@aarongoldenthal.com>",
21
21
  "license": "MIT",
22
22
  "engines": {
23
- "node": "^10.13.0 || ^12.13.0 || >=14.0.0"
23
+ "node": "^12.20.0 || ^14.15.0 || >=16.0.0"
24
24
  },
25
25
  "files": [
26
26
  "index.js"
@@ -30,37 +30,18 @@
30
30
  },
31
31
  "homepage": "https://gitlab.com/gitlab-ci-utils/stylelint-config-standard#readme",
32
32
  "dependencies": {
33
- "stylelint-config-standard": "^22.0.0"
33
+ "postcss-html": "^1.1.0",
34
+ "stylelint-config-standard": "^23.0.0"
34
35
  },
35
36
  "devDependencies": {
36
- "@aarongoldenthal/eslint-config-standard": "^7.0.2",
37
- "eslint": "^7.26.0",
38
- "jest": "^26.6.3",
39
- "jest-junit": "^12.0.0",
40
- "markdownlint-cli": "^0.27.1",
41
- "stylelint": "^13.13.1"
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": "^13.10.0"
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
  }