@vinicunca/eslint-config 2.11.11 → 2.12.2
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/dist/index.cjs +6 -4
- package/dist/index.d.cts +115 -51
- package/dist/index.d.ts +115 -51
- package/dist/index.js +5 -3
- package/package.json +18 -18
package/dist/index.cjs
CHANGED
|
@@ -112,23 +112,23 @@ __export(src_exports, {
|
|
|
112
112
|
});
|
|
113
113
|
module.exports = __toCommonJS(src_exports);
|
|
114
114
|
|
|
115
|
-
// ../node_modules/.pnpm/tsup@8.3.
|
|
115
|
+
// ../node_modules/.pnpm/tsup@8.3.5_jiti@2.4.0_postcss@8.4.47_tsx@4.19.0_typescript@5.6.3_yaml@2.5.0/node_modules/tsup/assets/cjs_shims.js
|
|
116
116
|
var getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.src || new URL("main.js", document.baseURI).href;
|
|
117
117
|
var importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
|
118
118
|
|
|
119
|
-
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.
|
|
119
|
+
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.6/node_modules/@vinicunca/perkakas/dist/chunk-HLL46USD.js
|
|
120
120
|
function r(e3) {
|
|
121
121
|
if (typeof e3 != "object" || e3 === null) return false;
|
|
122
122
|
let o = Object.getPrototypeOf(e3);
|
|
123
123
|
return o === null || o === Object.prototype;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.
|
|
126
|
+
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.6/node_modules/@vinicunca/perkakas/dist/chunk-AZUJCNUP.js
|
|
127
127
|
function e(o) {
|
|
128
128
|
return typeof o == "boolean";
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.
|
|
131
|
+
// ../node_modules/.pnpm/@vinicunca+perkakas@1.0.6/node_modules/@vinicunca/perkakas/dist/chunk-Q2HW4RVT.js
|
|
132
132
|
function e2(r2) {
|
|
133
133
|
return typeof r2 == "number" && !Number.isNaN(r2);
|
|
134
134
|
}
|
|
@@ -1934,6 +1934,7 @@ async function svelte(options = {}) {
|
|
|
1934
1934
|
// superseded by svelte/no-trailing-spaces
|
|
1935
1935
|
"svelte/derived-has-same-inputs-outputs": ERROR,
|
|
1936
1936
|
"svelte/html-closing-bracket-spacing": ERROR,
|
|
1937
|
+
// quotes only supports single and double quotes but in options we have backtick as well
|
|
1937
1938
|
"svelte/html-quotes": [ERROR, { prefer: quotes }],
|
|
1938
1939
|
"svelte/indent": [ERROR, { alignAttributesVertically: true, indent }],
|
|
1939
1940
|
"svelte/mustache-spacing": ERROR,
|
|
@@ -2521,6 +2522,7 @@ async function yaml(options = {}) {
|
|
|
2521
2522
|
"yaml/indent": [ERROR, indent === "tab" ? 2 : indent],
|
|
2522
2523
|
"yaml/key-spacing": ERROR,
|
|
2523
2524
|
"yaml/no-tab-indent": ERROR,
|
|
2525
|
+
// quotes only supports single and double quotes but in options we have backtick as well
|
|
2524
2526
|
"yaml/quotes": [ERROR, { avoidEscape: false, prefer: quotes }],
|
|
2525
2527
|
"yaml/spaced-comment": ERROR
|
|
2526
2528
|
} : {},
|