eslint-plugin-toml 0.3.0 → 0.3.1
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/utils/index.js +5 -1
- package/package.json +9 -8
package/lib/utils/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-toml",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "This ESLint plugin provides linting rules for TOML.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"formatter"
|
|
43
43
|
],
|
|
44
44
|
"author": "Yosuke Ota",
|
|
45
|
+
"funding": "https://github.com/sponsors/ota-meshi",
|
|
45
46
|
"license": "MIT",
|
|
46
47
|
"bugs": {
|
|
47
48
|
"url": "https://github.com/ota-meshi/eslint-plugin-toml/issues"
|
|
@@ -53,15 +54,15 @@
|
|
|
53
54
|
"dependencies": {
|
|
54
55
|
"debug": "^4.1.1",
|
|
55
56
|
"lodash": "^4.17.19",
|
|
56
|
-
"toml-eslint-parser": "^0.
|
|
57
|
+
"toml-eslint-parser": "^0.4.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@ota-meshi/eslint-plugin": "^0.10.0",
|
|
60
61
|
"@types/debug": "^4.1.5",
|
|
61
|
-
"@types/eslint": "^
|
|
62
|
+
"@types/eslint": "^8.0.0",
|
|
62
63
|
"@types/eslint-scope": "^3.7.0",
|
|
63
64
|
"@types/eslint-visitor-keys": "^1.0.0",
|
|
64
|
-
"@types/estree": "^0.0.
|
|
65
|
+
"@types/estree": "^0.0.51",
|
|
65
66
|
"@types/lodash": "^4.14.158",
|
|
66
67
|
"@types/mocha": "^9.0.0",
|
|
67
68
|
"@types/node": "^16.11.3",
|
|
@@ -74,14 +75,14 @@
|
|
|
74
75
|
"eslint-config-prettier": "^8.0.0",
|
|
75
76
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
76
77
|
"eslint-plugin-eslint-plugin": "^4.0.0",
|
|
77
|
-
"eslint-plugin-json-schema-validator": "^
|
|
78
|
+
"eslint-plugin-json-schema-validator": "^2.0.0",
|
|
78
79
|
"eslint-plugin-jsonc": "^2.0.0",
|
|
79
80
|
"eslint-plugin-markdown": "^2.0.0-0",
|
|
80
81
|
"eslint-plugin-node": "^11.1.0",
|
|
81
82
|
"eslint-plugin-prettier": "^4.0.0",
|
|
82
83
|
"eslint-plugin-regexp": "^1.0.0",
|
|
83
84
|
"eslint-plugin-vue": "^8.0.0",
|
|
84
|
-
"eslint-plugin-yml": "^0.
|
|
85
|
+
"eslint-plugin-yml": "^0.14.0",
|
|
85
86
|
"eslint4b": "^7.3.1",
|
|
86
87
|
"espree": "^9.0.0",
|
|
87
88
|
"mocha": "^9.0.0",
|
|
@@ -91,10 +92,10 @@
|
|
|
91
92
|
"semver": "^7.3.2",
|
|
92
93
|
"stylelint": "^14.0.0",
|
|
93
94
|
"stylelint-config-recommended-vue": "^1.0.0",
|
|
94
|
-
"stylelint-config-standard": "^
|
|
95
|
+
"stylelint-config-standard": "^25.0.0",
|
|
95
96
|
"stylelint-plugin-stylus": "^0.13.0",
|
|
96
97
|
"ts-node": "^10.0.0",
|
|
97
|
-
"typescript": "~4.
|
|
98
|
+
"typescript": "~4.6.0",
|
|
98
99
|
"vue-eslint-editor": "^1.1.0",
|
|
99
100
|
"vue-eslint-parser": "^8.0.0",
|
|
100
101
|
"vuepress": "^1.5.2"
|