@eslinted/core 18.1.3 → 18.2.1-rc.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 (48) hide show
  1. package/.github/workflows/RELEASE.yml +36 -36
  2. package/.github/workflows/rc.yml +36 -36
  3. package/.markdownlint.jsonc +126 -126
  4. package/LICENSE +21 -21
  5. package/README.md +4 -4
  6. package/SECURITY.md +8 -8
  7. package/eslint.config.js +3 -3
  8. package/package.json +96 -92
  9. package/src/factory/index.ts +141 -141
  10. package/src/factory/manifests.ts +21 -21
  11. package/src/factory/scopes/css.ts +17 -17
  12. package/src/factory/scopes/html.ts +14 -14
  13. package/src/factory/scopes/js.ts +11 -11
  14. package/src/factory/scopes/json.ts +11 -11
  15. package/src/factory/scopes/jsonc.ts +11 -11
  16. package/src/factory/scopes/manifest/index.ts +16 -16
  17. package/src/factory/scopes/mocha.ts +24 -24
  18. package/src/factory/scopes/svelte.ts +24 -24
  19. package/src/factory/scopes/ts.ts +25 -25
  20. package/src/factory/scopes/yml.ts +15 -15
  21. package/src/index.input.spec.ts +150 -150
  22. package/src/index.spec.ts +51 -51
  23. package/src/index.ts +24 -24
  24. package/src/interface/index.ts +3 -3
  25. package/src/interface/input/imports.ts +12 -12
  26. package/src/interface/input/index.ts +12 -12
  27. package/src/interface/input/scopes/defaults.ts +8 -8
  28. package/src/interface/input/scopes/extensions.ts +18 -18
  29. package/src/interface/input/scopes/index.ts +2 -2
  30. package/src/interface/output/configs/global/ignores.ts +6 -6
  31. package/src/interface/output/configs/global/index.ts +3 -3
  32. package/src/interface/output/configs/global/plugins.ts +7 -7
  33. package/src/interface/output/configs/global/settings.ts +7 -7
  34. package/src/interface/output/configs/index.ts +2 -2
  35. package/src/interface/output/configs/scoped/index.ts +2 -2
  36. package/src/interface/output/configs/scoped/rules.ts +8 -8
  37. package/src/interface/output/configs/scoped/settings.ts +12 -12
  38. package/src/interface/output/index.ts +9 -9
  39. package/src/interface/proto/config/index.ts +43 -43
  40. package/src/interface/proto/config/rule/index.ts +14 -14
  41. package/src/interface/proto/config/utility/index.ts +25 -25
  42. package/src/interface/proto/index.ts +1 -1
  43. package/src/scope/index.spec.ts +43 -43
  44. package/src/scope/index.ts +13 -13
  45. package/src/scope/tree/index.spec.ts +48 -48
  46. package/src/scope/tree/index.ts +8 -8
  47. package/src/scope/types/index.ts +24 -24
  48. package/tsconfig.json +165 -165
@@ -1,36 +1,36 @@
1
- name: NPM Publish (RELEASE)
2
- on:
3
- push:
4
- tags:
5
- - v[0-9]+.[0-9]+.[0-9]+
6
- jobs:
7
- publish-release:
8
- name: Build/Publish (RELEASE)
9
- environment:
10
- name: RELEASE
11
- url: https://www.npmjs.com/package/@eslinted/core?activeTab=versions
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Checkout
15
- id: checkout
16
- uses: actions/checkout@v4
17
- with:
18
- submodules: true
19
- lfs: false
20
- - name: Install Node
21
- id: node
22
- uses: actions/setup-node@v4
23
- with:
24
- node-version: 22
25
- check-latest: true
26
- registry-url: "https://registry.npmjs.org"
27
- - name: Update NPM
28
- id: npm
29
- run: npm i -g npm
30
- - name: Install Dependencies
31
- id: ci
32
- run: npm ci
33
- - name: Publish to NPM
34
- id: publish
35
- run: npm publish
36
- env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
1
+ name: NPM Publish (RELEASE)
2
+ on:
3
+ push:
4
+ tags:
5
+ - v[0-9]+.[0-9]+.[0-9]+
6
+ jobs:
7
+ publish-release:
8
+ name: Build/Publish (RELEASE)
9
+ environment:
10
+ name: RELEASE
11
+ url: https://www.npmjs.com/package/@eslinted/core?activeTab=versions
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ id: checkout
16
+ uses: actions/checkout@v4
17
+ with:
18
+ submodules: true
19
+ lfs: false
20
+ - name: Install Node
21
+ id: node
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 22
25
+ check-latest: true
26
+ registry-url: "https://registry.npmjs.org"
27
+ - name: Update NPM
28
+ id: npm
29
+ run: npm i -g npm
30
+ - name: Install Dependencies
31
+ id: ci
32
+ run: npm ci
33
+ - name: Publish to NPM
34
+ id: publish
35
+ run: npm publish
36
+ env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -1,36 +1,36 @@
1
- name: NPM Publish (rc)
2
- on:
3
- push:
4
- tags:
5
- - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
6
- jobs:
7
- publish-rc:
8
- name: Build/Publish (rc)
9
- environment:
10
- name: rc
11
- url: https://www.npmjs.com/package/@eslinted/core?activeTab=versions
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Checkout
15
- id: checkout
16
- uses: actions/checkout@v4
17
- with:
18
- submodules: true
19
- lfs: false
20
- - name: Install Node
21
- id: node
22
- uses: actions/setup-node@v4
23
- with:
24
- node-version: 22
25
- check-latest: true
26
- registry-url: "https://registry.npmjs.org"
27
- - name: Update NPM
28
- id: npm
29
- run: npm i -g npm
30
- - name: Install Dependencies
31
- id: ci
32
- run: npm ci
33
- - name: Publish to NPM
34
- id: publish
35
- run: npm publish
36
- env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
1
+ name: NPM Publish (rc)
2
+ on:
3
+ push:
4
+ tags:
5
+ - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
6
+ jobs:
7
+ publish-rc:
8
+ name: Build/Publish (rc)
9
+ environment:
10
+ name: rc
11
+ url: https://www.npmjs.com/package/@eslinted/core?activeTab=versions
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ id: checkout
16
+ uses: actions/checkout@v4
17
+ with:
18
+ submodules: true
19
+ lfs: false
20
+ - name: Install Node
21
+ id: node
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 22
25
+ check-latest: true
26
+ registry-url: "https://registry.npmjs.org"
27
+ - name: Update NPM
28
+ id: npm
29
+ run: npm i -g npm
30
+ - name: Install Dependencies
31
+ id: ci
32
+ run: npm ci
33
+ - name: Publish to NPM
34
+ id: publish
35
+ run: npm publish
36
+ env: { NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}" }
@@ -1,126 +1,126 @@
1
- {
2
- "$meta": {
3
- "template": "0.37.2",
4
- "rules": "https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/Rules.md",
5
- },
6
- // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
7
- "heading-increment": true /* MD001 */,
8
- "heading-style": {
9
- "style": "atx",
10
- } /* MD003 */,
11
- "ul-style": false /* 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": false /* 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": {
103
- "ignore_case": false /* @default: false */,
104
- } /* MD051 */,
105
- "reference-links-images": {
106
- "shortcut_syntax": false,
107
- } /* MD052 */,
108
- "link-image-reference-definitions": {
109
- "ignored_definitions": [
110
- "//",
111
- ] /* @default: ["//"] */,
112
- } /* MD053 */,
113
- "link-image-style": {
114
- "autolink": true,
115
- "collapsed": true,
116
- "full": true,
117
- "inline": true,
118
- "shortcut": true,
119
- "url_inline": true,
120
- } /* MD054 */,
121
- "table-pipe-style": {
122
- "style": "leading_and_trailing",
123
- } /* MD055 */,
124
- "table-column-count": true /* MD056 */,
125
- "blanks-around-tables": false /* MD058 */,
126
- }
1
+ {
2
+ "$meta": {
3
+ "template": "0.37.2",
4
+ "rules": "https://github.com/DavidAnson/markdownlint/blob/v0.37.4/doc/Rules.md",
5
+ },
6
+ // "$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint/v0.37.4/schema/markdownlint-config-schema.json",
7
+ "heading-increment": true /* MD001 */,
8
+ "heading-style": {
9
+ "style": "atx",
10
+ } /* MD003 */,
11
+ "ul-style": false /* 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": false /* 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": {
103
+ "ignore_case": false /* @default: false */,
104
+ } /* MD051 */,
105
+ "reference-links-images": {
106
+ "shortcut_syntax": false,
107
+ } /* MD052 */,
108
+ "link-image-reference-definitions": {
109
+ "ignored_definitions": [
110
+ "//",
111
+ ] /* @default: ["//"] */,
112
+ } /* MD053 */,
113
+ "link-image-style": {
114
+ "autolink": true,
115
+ "collapsed": true,
116
+ "full": true,
117
+ "inline": true,
118
+ "shortcut": true,
119
+ "url_inline": true,
120
+ } /* MD054 */,
121
+ "table-pipe-style": {
122
+ "style": "leading_and_trailing",
123
+ } /* MD055 */,
124
+ "table-column-count": true /* MD056 */,
125
+ "blanks-around-tables": false /* MD058 */,
126
+ }
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- # MIT License
2
-
3
- Copyright (c) 2024 Jimmy Zhening Luo
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ # MIT License
2
+
3
+ Copyright (c) 2024 Jimmy Zhening Luo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # [`@eslinted/core`](https://www.npmjs.com/package/@eslinted/core)
2
- [![NPM Publish (RELEASE)](https://github.com/jimmy-zhening-luo/linted-core/actions/workflows/RELEASE.yml/badge.svg)](https://github.com/jimmy-zhening-luo/linted-core/actions/workflows/RELEASE.yml)
3
-
4
- Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.
1
+ # [`@eslinted/core`](https://www.npmjs.com/package/@eslinted/core)
2
+ [![NPM Publish (RELEASE)](https://github.com/jimmy-zhening-luo/linted-core/actions/workflows/RELEASE.yml/badge.svg)](https://github.com/jimmy-zhening-luo/linted-core/actions/workflows/RELEASE.yml)
3
+
4
+ Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.
package/SECURITY.md CHANGED
@@ -1,8 +1,8 @@
1
- # Security Policy
2
-
3
- ## Reporting a Vulnerability
4
- This repository participates in GitHub private vulnerability reporting.
5
-
6
- [__⚑ Report Vulnerability__](./../../security/advisories/new)
7
-
8
- Thank you for your dedication to safety.
1
+ # Security Policy
2
+
3
+ ## Reporting a Vulnerability
4
+ This repository participates in GitHub private vulnerability reporting.
5
+
6
+ [__⚑ Report Vulnerability__](./../../security/advisories/new)
7
+
8
+ Thank you for your dedication to safety.
package/eslint.config.js CHANGED
@@ -1,3 +1,3 @@
1
- import linted from "linted";
2
-
3
- export default linted();
1
+ import linted from "linted";
2
+
3
+ export default linted();