eslint-plugin-yml 3.3.2 → 3.4.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/lib/index.d.mts +2 -1
- package/lib/index.mjs +2 -1
- package/package.json +8 -8
package/lib/index.d.mts
CHANGED
|
@@ -7,10 +7,11 @@ import { Linter, Scope } from "eslint";
|
|
|
7
7
|
|
|
8
8
|
//#region src/meta.d.ts
|
|
9
9
|
declare namespace meta_d_exports {
|
|
10
|
-
export { name, version };
|
|
10
|
+
export { name, namespace, version };
|
|
11
11
|
}
|
|
12
12
|
declare const name: string;
|
|
13
13
|
declare const version: string;
|
|
14
|
+
declare const namespace = "yml";
|
|
14
15
|
//#endregion
|
|
15
16
|
//#region src/language/yaml-source-code.d.ts
|
|
16
17
|
/**
|
package/lib/index.mjs
CHANGED
|
@@ -5294,11 +5294,12 @@ var prettier_default = [...base_default, { rules: {
|
|
|
5294
5294
|
//#endregion
|
|
5295
5295
|
//#region package.json
|
|
5296
5296
|
var name$1 = "eslint-plugin-yml";
|
|
5297
|
-
var version$1 = "3.
|
|
5297
|
+
var version$1 = "3.4.0";
|
|
5298
5298
|
//#endregion
|
|
5299
5299
|
//#region src/meta.ts
|
|
5300
5300
|
var meta_exports = /* @__PURE__ */ __exportAll({
|
|
5301
5301
|
name: () => name,
|
|
5302
|
+
namespace: () => "yml",
|
|
5302
5303
|
version: () => version
|
|
5303
5304
|
});
|
|
5304
5305
|
const name = name$1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-yml",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "This ESLint plugin provides linting rules for YAML.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.mjs",
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
"eslint": ">=9.38.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@changesets/changelog-github": "^0.
|
|
79
|
+
"@changesets/changelog-github": "^0.7.0",
|
|
80
80
|
"@changesets/cli": "^2.24.2",
|
|
81
81
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
|
|
82
82
|
"@eslint/eslintrc": "^3.1.0",
|
|
83
83
|
"@eslint/js": "^10.0.0",
|
|
84
|
-
"@eslint/json": "^
|
|
84
|
+
"@eslint/json": "^2.0.0",
|
|
85
85
|
"@ota-meshi/eslint-plugin": "^0.20.0",
|
|
86
86
|
"@ota-meshi/site-kit-eslint-editor-vue": "^0.2.0",
|
|
87
87
|
"@stylistic/eslint-plugin": "^5.7.0",
|
|
@@ -89,19 +89,19 @@
|
|
|
89
89
|
"@types/natural-compare": "^1.4.0",
|
|
90
90
|
"@types/node": "^24.0.0",
|
|
91
91
|
"@types/semver": "^7.3.1",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "~8.
|
|
93
|
-
"@typescript-eslint/parser": "~8.
|
|
92
|
+
"@typescript-eslint/eslint-plugin": "~8.60.0",
|
|
93
|
+
"@typescript-eslint/parser": "~8.60.0",
|
|
94
94
|
"cross-env": "^10.0.0",
|
|
95
95
|
"env-cmd": "^11.0.0",
|
|
96
96
|
"eslint": "^10.0.0",
|
|
97
97
|
"eslint-config-prettier": "^10.0.0",
|
|
98
98
|
"eslint-plugin-eslint-plugin": "^7.0.0",
|
|
99
99
|
"eslint-plugin-eslint-rule-tester": "^0.6.0",
|
|
100
|
-
"eslint-plugin-jsdoc": "^
|
|
100
|
+
"eslint-plugin-jsdoc": "^63.0.0",
|
|
101
101
|
"eslint-plugin-json-schema-validator": "^6.0.0",
|
|
102
102
|
"eslint-plugin-jsonc": "^3.0.0",
|
|
103
103
|
"eslint-plugin-markdown": "^5.0.0",
|
|
104
|
-
"eslint-plugin-n": "^
|
|
104
|
+
"eslint-plugin-n": "^18.0.0",
|
|
105
105
|
"eslint-plugin-node-dependencies": "^2.0.0",
|
|
106
106
|
"eslint-plugin-prettier": "^5.0.0",
|
|
107
107
|
"eslint-plugin-regexp": "^3.0.0",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"stylelint-config-standard": "^40.0.0",
|
|
120
120
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
121
121
|
"stylelint-stylus": "^1.0.0",
|
|
122
|
-
"tsdown": "^0.
|
|
122
|
+
"tsdown": "^0.22.0",
|
|
123
123
|
"tsx": "^4.21.0",
|
|
124
124
|
"typescript": "~6.0.0",
|
|
125
125
|
"typescript-eslint": "^8.0.0",
|