@jsse/eslint-config 0.0.8 → 0.0.10
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/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +0 -3
- package/dist/index.d.cts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -2
- package/package.json +3 -3
package/dist/cli.cjs
CHANGED
package/dist/cli.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -2368,7 +2368,6 @@ __export(src_exports, {
|
|
|
2368
2368
|
node: () => node,
|
|
2369
2369
|
parserJsonc: () => import_jsonc_eslint_parser.default,
|
|
2370
2370
|
parserTs: () => parserTs,
|
|
2371
|
-
pluginAntfu: () => import_eslint_plugin_antfu.default,
|
|
2372
2371
|
pluginEslintComments: () => import_eslint_plugin_eslint_comments.default,
|
|
2373
2372
|
pluginImport: () => pluginImport,
|
|
2374
2373
|
pluginJsdoc: () => import_eslint_plugin_jsdoc.default,
|
|
@@ -2419,7 +2418,6 @@ var import_eslint_plugin_tailwindcss = __toESM(require("eslint-plugin-tailwindcs
|
|
|
2419
2418
|
var import_eslint_plugin_vitest = __toESM(require("eslint-plugin-vitest"), 1);
|
|
2420
2419
|
var import_jsonc_eslint_parser = __toESM(require("jsonc-eslint-parser"), 1);
|
|
2421
2420
|
var import_eslint_plugin_markdown = __toESM(require("eslint-plugin-markdown"), 1);
|
|
2422
|
-
var import_eslint_plugin_antfu = __toESM(require("eslint-plugin-antfu"), 1);
|
|
2423
2421
|
|
|
2424
2422
|
// src/configs/comments.ts
|
|
2425
2423
|
function comments() {
|
|
@@ -11329,7 +11327,6 @@ function jsseReact() {
|
|
|
11329
11327
|
node,
|
|
11330
11328
|
parserJsonc,
|
|
11331
11329
|
parserTs,
|
|
11332
|
-
pluginAntfu,
|
|
11333
11330
|
pluginEslintComments,
|
|
11334
11331
|
pluginImport,
|
|
11335
11332
|
pluginJsdoc,
|
package/dist/index.d.cts
CHANGED
|
@@ -25,7 +25,6 @@ export { default as pluginTailwind } from 'eslint-plugin-tailwindcss';
|
|
|
25
25
|
export { default as pluginVitest } from 'eslint-plugin-vitest';
|
|
26
26
|
export { default as parserJsonc } from 'jsonc-eslint-parser';
|
|
27
27
|
export { default as pluginMarkdown } from 'eslint-plugin-markdown';
|
|
28
|
-
export { default as pluginAntfu } from 'eslint-plugin-antfu';
|
|
29
28
|
|
|
30
29
|
type Rules = MergeIntersection<RenamePrefix<TypeScriptRules, "@typescript-eslint/", "ts/"> & RenamePrefix<VitestRules, "vitest/", "test/"> & RenamePrefix<YmlRules, "yml/", "yaml/"> & RenamePrefix<NRules, "n/", "node/"> & ImportRules & EslintRules & JsoncRules & VueRules & UnicornRules & EslintCommentsRules & {
|
|
31
30
|
"test/no-only-tests": RuleConfig;
|
package/dist/index.d.ts
CHANGED
|
@@ -25,7 +25,6 @@ export { default as pluginTailwind } from 'eslint-plugin-tailwindcss';
|
|
|
25
25
|
export { default as pluginVitest } from 'eslint-plugin-vitest';
|
|
26
26
|
export { default as parserJsonc } from 'jsonc-eslint-parser';
|
|
27
27
|
export { default as pluginMarkdown } from 'eslint-plugin-markdown';
|
|
28
|
-
export { default as pluginAntfu } from 'eslint-plugin-antfu';
|
|
29
28
|
|
|
30
29
|
type Rules = MergeIntersection<RenamePrefix<TypeScriptRules, "@typescript-eslint/", "ts/"> & RenamePrefix<VitestRules, "vitest/", "test/"> & RenamePrefix<YmlRules, "yml/", "yaml/"> & RenamePrefix<NRules, "n/", "node/"> & ImportRules & EslintRules & JsoncRules & VueRules & UnicornRules & EslintCommentsRules & {
|
|
31
30
|
"test/no-only-tests": RuleConfig;
|
package/dist/index.js
CHANGED
|
@@ -2342,7 +2342,6 @@ import { default as default12 } from "eslint-plugin-tailwindcss";
|
|
|
2342
2342
|
import { default as default13 } from "eslint-plugin-vitest";
|
|
2343
2343
|
import { default as default14 } from "jsonc-eslint-parser";
|
|
2344
2344
|
import { default as default15 } from "eslint-plugin-markdown";
|
|
2345
|
-
import { default as default16 } from "eslint-plugin-antfu";
|
|
2346
2345
|
|
|
2347
2346
|
// src/configs/comments.ts
|
|
2348
2347
|
function comments() {
|
|
@@ -11249,7 +11248,6 @@ export {
|
|
|
11249
11248
|
node,
|
|
11250
11249
|
default14 as parserJsonc,
|
|
11251
11250
|
parserTs,
|
|
11252
|
-
default16 as pluginAntfu,
|
|
11253
11251
|
default4 as pluginEslintComments,
|
|
11254
11252
|
pluginImport,
|
|
11255
11253
|
default5 as pluginJsdoc,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsse/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.10",
|
|
5
5
|
"packageManager": "pnpm@8.8.0",
|
|
6
6
|
"description": "jsse eslint config",
|
|
7
7
|
"author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@typescript-eslint/parser": "^6.9.0",
|
|
42
42
|
"eslint-config-flat-gitignore": "^0.1.1",
|
|
43
43
|
"eslint-define-config": "^1.24.1",
|
|
44
|
-
"eslint-plugin-antfu": "1.0.
|
|
44
|
+
"eslint-plugin-antfu": "1.0.1",
|
|
45
45
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
46
46
|
"eslint-plugin-i": "^2.28.1",
|
|
47
47
|
"eslint-plugin-jsdoc": "^46.8.2",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"vitest": "^0.34.6"
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|
|
92
|
-
"build": "pnpm typecheck && pnpm build-fast --dts",
|
|
92
|
+
"build": "pnpm typecheck && pnpm fmtc && pnpm build-fast --dts && eslint .",
|
|
93
93
|
"build-fast": "tsup src/index.ts src/cli.ts --format esm,cjs --clean",
|
|
94
94
|
"dev": "tsup src/index.ts --format esm,cjs --watch & eslint-flat-config-viewer",
|
|
95
95
|
"fmt": "prettier -w .",
|