linted 19.4.3-rc.1 → 19.4.3-rc.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -32,5 +32,7 @@ jobs:
32
32
  run: npm ci
33
33
  - name: Publish to NPM
34
34
  id: publish
35
- run: npm publish
35
+ run: |
36
+ npm publish --tag latest
37
+ npm dist-tag add $npm_package_name@$npm_package_version next
36
38
  env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -32,5 +32,6 @@ jobs:
32
32
  run: npm ci
33
33
  - name: Publish to NPM
34
34
  id: publish
35
- run: npm publish --tag=next
35
+ run: |
36
+ npm publish --tag next
36
37
  env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -1,14 +1,12 @@
1
1
  {
2
- // v0.35.0
3
- // https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/Rules.md
4
- // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.35.0/schema/markdownlint-config-schema.json",
2
+ // v0.36.1
3
+ // https://github.com/DavidAnson/markdownlint/blob/v0.36.1/doc/Rules.md
4
+ // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.36.1/schema/markdownlint-config-schema.json",
5
5
  "heading-increment": true /* MD001 */,
6
6
  "heading-style": {
7
7
  "style": "atx",
8
8
  } /* MD003 */,
9
- "ul-style": {
10
- "style": "sublist",
11
- } /* MD004 */,
9
+ "ul-style": false /* MD004 */,
12
10
  "list-indent": true /* MD005 */,
13
11
  "ul-indent": {
14
12
  "indent": 2,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "22.10.0",
3
3
  "name": "linted",
4
- "version": "19.4.3-rc.1",
4
+ "version": "19.4.3-rc.2",
5
5
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
6
6
  "keywords": [
7
7
  "eslint",
@@ -61,7 +61,7 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@eslinted/core": "5.1.5-rc.1",
64
+ "@eslinted/core": "5.1.5",
65
65
  "@html-eslint/eslint-plugin": "0.27.0",
66
66
  "@html-eslint/parser": "0.27.0",
67
67
  "@stylistic/eslint-plugin": "2.10.0",