@eslinted/core 4.0.1 → 4.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/.markdownlint.jsonc +124 -0
  2. package/package.json +1 -1
@@ -0,0 +1,124 @@
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",
5
+ "heading-increment": true /* MD001 */,
6
+ "heading-style": {
7
+ "style": "atx",
8
+ } /* MD003 */,
9
+ "ul-style": {
10
+ "style": "sublist",
11
+ } /* MD004 */,
12
+ "list-indent": true /* MD005 */,
13
+ "ul-indent": {
14
+ "indent": 2,
15
+ "start_indent": 2,
16
+ "start_indented": false,
17
+ } /* MD007 */,
18
+ "no-trailing-spaces": {
19
+ "br_spaces": 0,
20
+ "list_item_empty_lines": false,
21
+ "strict": true,
22
+ } /* MD009 */,
23
+ "no-hard-tabs": {
24
+ "spaces_per_tab": 2,
25
+ "code_blocks": true,
26
+ "ignore_code_languages": [],
27
+ } /* MD010 */,
28
+ "no-reversed-links": false /* MD011 */,
29
+ "no-multiple-blanks": {
30
+ "maximum": 1,
31
+ } /* MD012 */,
32
+ "line-length": false /* MD013 */,
33
+ "commands-show-output": true /* MD014 */,
34
+ "no-missing-space-atx": true /* MD018 */,
35
+ "no-multiple-space-atx": true /* MD019 */,
36
+ "no-missing-space-closed-atx": true /* MD020 */,
37
+ "no-multiple-space-closed-atx": true /* MD021 */,
38
+ "blanks-around-headings": {
39
+ "lines_above": 1,
40
+ "lines_below": 0,
41
+ } /* MD022 */,
42
+ "heading-start-left": true /* MD023 */,
43
+ "no-duplicate-heading": {
44
+ "siblings_only": true,
45
+ } /* MD024 */,
46
+ "single-title": false /* MD025, single-h1 */,
47
+ "no-trailing-punctuation": {
48
+ "punctuation": "" /* @DEFAULT: .,;:!。,;:! */,
49
+ } /* MD026 */,
50
+ "no-multiple-space-blockquote": true /* MD027 */,
51
+ "no-blanks-blockquote": true /* MD028 */,
52
+ "ol-prefix": {
53
+ "style": "one_or_ordered",
54
+ } /* MD029 */,
55
+ "list-marker-space": {
56
+ "ol_multi": 1,
57
+ "ol_single": 1,
58
+ "ul_multi": 1,
59
+ "ul_single": 1,
60
+ } /* MD030 */,
61
+ "blanks-around-fences": {
62
+ "list_items": false,
63
+ } /* MD031 */,
64
+ "blanks-around-lists": true /* MD032 */,
65
+ "no-inline-html": {
66
+ "allowed_elements": [
67
+ "br",
68
+ "details",
69
+ "summary",
70
+ ],
71
+ } /* MD033 */,
72
+ "no-bare-urls": true /* MD034 */,
73
+ "hr-style": {
74
+ "style": "---",
75
+ } /* MD035 */,
76
+ "no-emphasis-as-heading": false /* MD036 */,
77
+ "no-space-in-emphasis": true /* MD037 */,
78
+ "no-space-in-code": true /* MD038 */,
79
+ "no-space-in-links": true /* MD039 */,
80
+ "fenced-code-language": {
81
+ "allowed_languages": [],
82
+ "language_only": false,
83
+ } /* MD040 */,
84
+ "first-line-heading": false /* MD041, first-line-h1 */,
85
+ "no-empty-links": true /* MD042 */,
86
+ "required-headings": false /* MD043 */,
87
+ "proper-names": false /* MD044 */,
88
+ "no-alt-text": true /* MD045 */,
89
+ "code-block-style": {
90
+ "style": "fenced",
91
+ } /* MD046 */,
92
+ "single-trailing-newline": true /* MD047 */,
93
+ "code-fence-style": {
94
+ "style": "backtick",
95
+ } /* MD048 */,
96
+ "emphasis-style": {
97
+ "style": "underscore",
98
+ } /* MD049 */,
99
+ "strong-style": {
100
+ "style": "underscore",
101
+ } /* MD050 */,
102
+ "link-fragments": true /* MD051 */,
103
+ "reference-links-images": {
104
+ "shortcut_syntax": false,
105
+ } /* MD052 */,
106
+ "link-image-reference-definitions": {
107
+ "ignored_definitions": [
108
+ "//",
109
+ ] /* @DEFAULT: ["//"] */,
110
+ } /* MD053 */,
111
+ "link-image-style": {
112
+ "autolink": true,
113
+ "collapsed": true,
114
+ "full": true,
115
+ "inline": true,
116
+ "shortcut": true,
117
+ "url_inline": true,
118
+ } /* MD054 */,
119
+ "table-pipe-style": {
120
+ "style": "leading_and_trailing",
121
+ } /* MD055 */,
122
+ "table-column-count": true /* MD056 */,
123
+ "blanks-around-tables": false /* MD058 */,
124
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "20.17.8",
3
3
  "name": "@eslinted/core",
4
- "version": "4.0.1",
4
+ "version": "4.0.2",
5
5
  "description": "Core ESLint flat config factory npm package `linted`.",
6
6
  "keywords": [],
7
7
  "license": "MIT",