@jsse/eslint-config 0.4.0 → 0.4.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/CHANGELOG.md +6 -0
- package/dist/cli.js +1 -1
- package/dist/esm/config-fns.d.ts +5 -0
- package/dist/esm/config-fns.js +6 -0
- package/dist/esm/configs/pnpm.d.ts +2 -0
- package/dist/esm/configs/pnpm.js +34 -0
- package/dist/esm/configs/tailwind.d.ts +1 -2
- package/dist/esm/configs/tailwind.js +81 -48
- package/dist/esm/define-config.js +11 -2
- package/dist/esm/fixable.d.ts +1 -1
- package/dist/esm/generated/fixable-rules-map.js +8 -1
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/esm/plugins-all.d.ts +1 -1
- package/dist/esm/plugins-all.js +6 -2
- package/dist/esm/plugins.d.ts +1 -6
- package/dist/esm/plugins.js +1 -18
- package/dist/esm/presets.js +0 -32
- package/dist/esm/types.d.ts +13 -0
- package/dist/index.d.ts +405 -159
- package/dist/index.js +99 -637
- package/package.json +23 -24
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
package/dist/esm/config-fns.d.ts
CHANGED
|
@@ -56,6 +56,10 @@ export declare const CONFIGS_MAPPING: {
|
|
|
56
56
|
fn: import("./types.js").EslintConfigFn;
|
|
57
57
|
typeName: string;
|
|
58
58
|
};
|
|
59
|
+
pnpm: {
|
|
60
|
+
fn: import("./types.js").EslintConfigFn;
|
|
61
|
+
typeName: string;
|
|
62
|
+
};
|
|
59
63
|
prettier: {
|
|
60
64
|
fn: import("./types.js").EslintConfigFn;
|
|
61
65
|
typeName: string;
|
|
@@ -120,6 +124,7 @@ export { markdown } from "./configs/markdown.js";
|
|
|
120
124
|
export { n } from "./configs/n.js";
|
|
121
125
|
export { noOnlyTests } from "./configs/no-only-tests.js";
|
|
122
126
|
export { perfectionist } from "./configs/perfectionist.js";
|
|
127
|
+
export { pnpm } from "./configs/pnpm.js";
|
|
123
128
|
export { prettier } from "./configs/prettier.js";
|
|
124
129
|
export { react, reactHooks } from "./configs/react.js";
|
|
125
130
|
export { sortPackageJson } from "./configs/sort-package-json.js";
|
package/dist/esm/config-fns.js
CHANGED
|
@@ -11,6 +11,7 @@ import { markdown } from "./configs/markdown.js";
|
|
|
11
11
|
import { n } from "./configs/n.js";
|
|
12
12
|
import { noOnlyTests } from "./configs/no-only-tests.js";
|
|
13
13
|
import { perfectionist } from "./configs/perfectionist.js";
|
|
14
|
+
import { pnpm } from "./configs/pnpm.js";
|
|
14
15
|
import { prettier } from "./configs/prettier.js";
|
|
15
16
|
import { react, reactHooks } from "./configs/react.js";
|
|
16
17
|
import { sortPackageJson } from "./configs/sort-package-json.js";
|
|
@@ -75,6 +76,10 @@ export const CONFIGS_MAPPING = {
|
|
|
75
76
|
fn: perfectionist,
|
|
76
77
|
typeName: "PerfectionistRuleOptions",
|
|
77
78
|
},
|
|
79
|
+
pnpm: {
|
|
80
|
+
fn: pnpm,
|
|
81
|
+
typeName: "PnpmRuleOptions",
|
|
82
|
+
},
|
|
78
83
|
prettier: {
|
|
79
84
|
fn: prettier,
|
|
80
85
|
typeName: "PrettierRuleOptions",
|
|
@@ -142,6 +147,7 @@ export { markdown } from "./configs/markdown.js";
|
|
|
142
147
|
export { n } from "./configs/n.js";
|
|
143
148
|
export { noOnlyTests } from "./configs/no-only-tests.js";
|
|
144
149
|
export { perfectionist } from "./configs/perfectionist.js";
|
|
150
|
+
export { pnpm } from "./configs/pnpm.js";
|
|
145
151
|
export { prettier } from "./configs/prettier.js";
|
|
146
152
|
export { react, reactHooks } from "./configs/react.js";
|
|
147
153
|
export { sortPackageJson } from "./configs/sort-package-json.js";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { pluginPnpm } from "../plugins.js";
|
|
2
|
+
export const pnpm = async () => {
|
|
3
|
+
return [
|
|
4
|
+
{
|
|
5
|
+
files: ["package.json", "**/package.json"],
|
|
6
|
+
languageOptions: {
|
|
7
|
+
parser: await import("jsonc-eslint-parser"),
|
|
8
|
+
},
|
|
9
|
+
name: "jsse/pnpm/package-json",
|
|
10
|
+
plugins: {
|
|
11
|
+
pnpm: pluginPnpm,
|
|
12
|
+
},
|
|
13
|
+
rules: {
|
|
14
|
+
"pnpm/json-enforce-catalog": "error",
|
|
15
|
+
"pnpm/json-prefer-workspace-settings": "error",
|
|
16
|
+
"pnpm/json-valid-catalog": "error",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
files: ["pnpm-workspace.yaml"],
|
|
21
|
+
languageOptions: {
|
|
22
|
+
parser: await import("yaml-eslint-parser"),
|
|
23
|
+
},
|
|
24
|
+
name: "jsse/pnpm/pnpm-workspace-yaml",
|
|
25
|
+
plugins: {
|
|
26
|
+
pnpm: pluginPnpm,
|
|
27
|
+
},
|
|
28
|
+
rules: {
|
|
29
|
+
"pnpm/yaml-no-duplicate-catalog-item": "error",
|
|
30
|
+
"pnpm/yaml-no-unused-catalog-item": "error",
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
];
|
|
34
|
+
};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const tailwind: EslintConfigFn<Partial<TailwindEslintSettings>>;
|
|
1
|
+
export {};
|
|
@@ -1,48 +1,81 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
};
|
|
1
|
+
/* eslint-disable unicorn/no-empty-file */
|
|
2
|
+
// import { err, ok } from "neverthrow";
|
|
3
|
+
// import type {
|
|
4
|
+
// EslintConfigFn,
|
|
5
|
+
// TailwindEslintSettings,
|
|
6
|
+
// TailwindOptions,
|
|
7
|
+
// } from "../types.js";
|
|
8
|
+
// import { GLOB_SRC } from "../globs.js";
|
|
9
|
+
// import { log } from "../log.js";
|
|
10
|
+
// import { interopDefault } from "../utils.js";
|
|
11
|
+
export {};
|
|
12
|
+
// async function importPluginTailwind() {
|
|
13
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
14
|
+
// const pluginTailwind = await interopDefault(
|
|
15
|
+
// // @ts-expect-error - bad types
|
|
16
|
+
// import("eslint-plugin-tailwindcss"),
|
|
17
|
+
// );
|
|
18
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
19
|
+
// return { pluginTailwind };
|
|
20
|
+
// }
|
|
21
|
+
// async function safeImportPluginTailwind() {
|
|
22
|
+
// try {
|
|
23
|
+
// const plugin = await importPluginTailwind();
|
|
24
|
+
// return ok(plugin);
|
|
25
|
+
// } catch (e: unknown) {
|
|
26
|
+
// const msg =
|
|
27
|
+
// (e instanceof Error ? e.message : String(e)) ||
|
|
28
|
+
// `unknown error ${String(e)}`;
|
|
29
|
+
// return err(new Error(msg));
|
|
30
|
+
// }
|
|
31
|
+
// }
|
|
32
|
+
// const TAILWIND_ESLINT_SETTINGS_DEFAULT: TailwindEslintSettings = {
|
|
33
|
+
// // These are the default values but feel free to customize
|
|
34
|
+
// callees: ["classnames", "clsx", "ctl", "cn", "cx", "twMerge", "twJoin"],
|
|
35
|
+
// classRegex: "^class(Name)?$", // can be modified to support custom attributes. E.g. "^tw$" for `twin.macro`
|
|
36
|
+
// config: "tailwind.config.js", // returned from `loadConfig()` utility if not provided
|
|
37
|
+
// cssFiles: ["**/*.css", "!**/node_modules", "!**/.*", "!**/dist", "!**/build"],
|
|
38
|
+
// cssFilesRefreshRate: 5000,
|
|
39
|
+
// removeDuplicates: true,
|
|
40
|
+
// skipClassAttribute: false,
|
|
41
|
+
// tags: [], // can be set to e.g. ['tw'] for use in tw`bg-blue`
|
|
42
|
+
// whitelist: [],
|
|
43
|
+
// };
|
|
44
|
+
// function tailwindSettings(options?: TailwindOptions): TailwindEslintSettings {
|
|
45
|
+
// if (typeof options === "boolean") {
|
|
46
|
+
// return TAILWIND_ESLINT_SETTINGS_DEFAULT;
|
|
47
|
+
// }
|
|
48
|
+
// return { ...TAILWIND_ESLINT_SETTINGS_DEFAULT, ...options };
|
|
49
|
+
// }
|
|
50
|
+
// export const tailwind: EslintConfigFn<Partial<TailwindEslintSettings>> = async (
|
|
51
|
+
// options,
|
|
52
|
+
// ) => {
|
|
53
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
54
|
+
// const importResult = await safeImportPluginTailwind();
|
|
55
|
+
// return importResult.match(
|
|
56
|
+
// ({ pluginTailwind }) => {
|
|
57
|
+
// return [
|
|
58
|
+
// {
|
|
59
|
+
// files: [GLOB_SRC],
|
|
60
|
+
// name: "jsse/tailwind/rules",
|
|
61
|
+
// plugins: {
|
|
62
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
63
|
+
// tailwindcss: pluginTailwind,
|
|
64
|
+
// },
|
|
65
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
66
|
+
// rules: {
|
|
67
|
+
// // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
|
|
68
|
+
// ...pluginTailwind.configs.recommended.rules,
|
|
69
|
+
// },
|
|
70
|
+
// settings: {
|
|
71
|
+
// tailwindcss: tailwindSettings(options),
|
|
72
|
+
// },
|
|
73
|
+
// },
|
|
74
|
+
// ];
|
|
75
|
+
// },
|
|
76
|
+
// (error) => {
|
|
77
|
+
// log.error(error.message);
|
|
78
|
+
// return [];
|
|
79
|
+
// },
|
|
80
|
+
// );
|
|
81
|
+
// };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
2
|
import process from "node:process";
|
|
3
3
|
import { isPackageExists } from "local-pkg";
|
|
4
|
-
import { antfu, command, deMorgan, eslintComments, ignores, imports, javascript, jsdoc, jsonc, markdown, n, noOnlyTests, perfectionist, prettier, react, sortPackageJson, sortTsconfig, stylistic, tsdoc, typescript, unicorn, vitest, yml, } from "./config-fns.js";
|
|
4
|
+
import { antfu, command, deMorgan, eslintComments, ignores, imports, javascript, jsdoc, jsonc, markdown, n, noOnlyTests, perfectionist, pnpm, prettier, react, sortPackageJson, sortTsconfig, stylistic, tsdoc, typescript, unicorn, vitest, yml, } from "./config-fns.js";
|
|
5
5
|
import { SLOW_RULES } from "./const.js";
|
|
6
6
|
import { log } from "./log.js";
|
|
7
7
|
import { combineAsync, interopDefault, isInEditor, turnOffRules, } from "./utils.js";
|
|
@@ -29,6 +29,7 @@ function defaultOptions() {
|
|
|
29
29
|
markdown: false,
|
|
30
30
|
off: [],
|
|
31
31
|
overrides: {},
|
|
32
|
+
pnpm: false,
|
|
32
33
|
prettier: true,
|
|
33
34
|
react: false,
|
|
34
35
|
reportUnusedDisableDirectives: true,
|
|
@@ -72,7 +73,7 @@ function normalizeOptions(options = {}) {
|
|
|
72
73
|
*/
|
|
73
74
|
export async function jsse(options = {}, ...userConfigs) {
|
|
74
75
|
const normalizedOptions = normalizeOptions(options);
|
|
75
|
-
const { command: enableCommand, componentExts, debug, gitignore: enableGitignore, isInEditor, jsonc: enableJsonc, markdown: enableMarkdown, off, overrides = {}, prettier: enablePrettier, react: enableReact, reportUnusedDisableDirectives, rootId, // default to "jsse"
|
|
76
|
+
const { command: enableCommand, componentExts, debug, gitignore: enableGitignore, isInEditor, jsonc: enableJsonc, markdown: enableMarkdown, off, overrides = {}, pnpm: enablePnpm, prettier: enablePrettier, react: enableReact, reportUnusedDisableDirectives, rootId, // default to "jsse"
|
|
76
77
|
stylistic: stylisticOptions, tailwind: tailwindOptions, test: enableTest, tsPrefix, typeAware, typescript: typescriptOptions, yaml: enableYaml, } = normalizedOptions;
|
|
77
78
|
if (debug || process.argv.includes("--debug")) {
|
|
78
79
|
log.level = "debug";
|
|
@@ -117,6 +118,14 @@ export async function jsse(options = {}, ...userConfigs) {
|
|
|
117
118
|
if (enableCommand) {
|
|
118
119
|
configs.push(command());
|
|
119
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* =========================================================================
|
|
123
|
+
* PNPM
|
|
124
|
+
* ========================================================================
|
|
125
|
+
*/
|
|
126
|
+
if (enablePnpm) {
|
|
127
|
+
configs.push(pnpm());
|
|
128
|
+
}
|
|
120
129
|
/**
|
|
121
130
|
* =========================================================================
|
|
122
131
|
* TYPESCRIPT
|
package/dist/esm/fixable.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const FIXABLE_RULES: ("accessor-pairs" | "array-bracket-newline" | "array-bracket-spacing" | "array-callback-return" | "array-element-newline" | "arrow-body-style" | "arrow-parens" | "arrow-spacing" | "block-scoped-var" | "block-spacing" | "brace-style" | "callback-return" | "camelcase" | "capitalized-comments" | "class-methods-use-this" | "comma-dangle" | "comma-spacing" | "comma-style" | "complexity" | "computed-property-spacing" | "consistent-return" | "consistent-this" | "constructor-super" | "curly" | "default-case" | "default-case-last" | "default-param-last" | "dot-location" | "dot-notation" | "eol-last" | "eqeqeq" | "for-direction" | "func-call-spacing" | "func-name-matching" | "func-names" | "func-style" | "function-call-argument-newline" | "function-paren-newline" | "generator-star-spacing" | "getter-return" | "global-require" | "grouped-accessor-pairs" | "guard-for-in" | "handle-callback-err" | "id-blacklist" | "id-denylist" | "id-length" | "id-match" | "implicit-arrow-linebreak" | "indent" | "indent-legacy" | "init-declarations" | "jsx-quotes" | "key-spacing" | "keyword-spacing" | "line-comment-position" | "linebreak-style" | "lines-around-comment" | "lines-around-directive" | "lines-between-class-members" | "logical-assignment-operators" | "max-classes-per-file" | "max-depth" | "max-len" | "max-lines" | "max-lines-per-function" | "max-nested-callbacks" | "max-params" | "max-statements" | "max-statements-per-line" | "multiline-comment-style" | "multiline-ternary" | "new-cap" | "new-parens" | "newline-after-var" | "newline-before-return" | "newline-per-chained-call" | "no-alert" | "no-array-constructor" | "no-async-promise-executor" | "no-await-in-loop" | "no-bitwise" | "no-buffer-constructor" | "no-caller" | "no-case-declarations" | "no-catch-shadow" | "no-class-assign" | "no-compare-neg-zero" | "no-cond-assign" | "no-confusing-arrow" | "no-console" | "no-const-assign" | "no-constant-binary-expression" | "no-constant-condition" | "no-constructor-return" | "no-continue" | "no-control-regex" | "no-debugger" | "no-delete-var" | "no-div-regex" | "no-dupe-args" | "no-dupe-class-members" | "no-dupe-else-if" | "no-dupe-keys" | "no-duplicate-case" | "no-duplicate-imports" | "no-else-return" | "no-empty" | "no-empty-character-class" | "no-empty-function" | "no-empty-pattern" | "no-empty-static-block" | "no-eq-null" | "no-eval" | "no-ex-assign" | "no-extend-native" | "no-extra-bind" | "no-extra-boolean-cast" | "no-extra-label" | "no-extra-parens" | "no-extra-semi" | "no-fallthrough" | "no-floating-decimal" | "no-func-assign" | "no-global-assign" | "no-implicit-coercion" | "no-implicit-globals" | "no-implied-eval" | "no-import-assign" | "no-inline-comments" | "no-inner-declarations" | "no-invalid-regexp" | "no-invalid-this" | "no-irregular-whitespace" | "no-iterator" | "no-label-var" | "no-labels" | "no-lone-blocks" | "no-lonely-if" | "no-loop-func" | "no-loss-of-precision" | "no-magic-numbers" | "no-misleading-character-class" | "no-mixed-operators" | "no-mixed-requires" | "no-mixed-spaces-and-tabs" | "no-multi-assign" | "no-multi-spaces" | "no-multi-str" | "no-multiple-empty-lines" | "no-native-reassign" | "no-negated-condition" | "no-negated-in-lhs" | "no-nested-ternary" | "no-new" | "no-new-func" | "no-new-native-nonconstructor" | "no-new-object" | "no-new-require" | "no-new-symbol" | "no-new-wrappers" | "no-nonoctal-decimal-escape" | "no-obj-calls" | "no-object-constructor" | "no-octal" | "no-octal-escape" | "no-param-reassign" | "no-path-concat" | "no-plusplus" | "no-process-env" | "no-process-exit" | "no-promise-executor-return" | "no-proto" | "no-prototype-builtins" | "no-redeclare" | "no-regex-spaces" | "no-restricted-exports" | "no-restricted-globals" | "no-restricted-imports" | "no-restricted-modules" | "no-restricted-properties" | "no-restricted-syntax" | "no-return-assign" | "no-return-await" | "no-script-url" | "no-self-assign" | "no-self-compare" | "no-sequences" | "no-setter-return" | "no-shadow" | "no-shadow-restricted-names" | "no-spaced-func" | "no-sparse-arrays" | "no-sync" | "no-tabs" | "no-template-curly-in-string" | "no-ternary" | "no-this-before-super" | "no-throw-literal" | "no-trailing-spaces" | "no-unassigned-vars" | "no-undef" | "no-undef-init" | "no-undefined" | "no-underscore-dangle" | "no-unexpected-multiline" | "no-unmodified-loop-condition" | "no-unneeded-ternary" | "no-unreachable" | "no-unreachable-loop" | "no-unsafe-finally" | "no-unsafe-negation" | "no-unsafe-optional-chaining" | "no-unused-expressions" | "no-unused-labels" | "no-unused-private-class-members" | "no-unused-vars" | "no-use-before-define" | "no-useless-assignment" | "no-useless-backreference" | "no-useless-call" | "no-useless-catch" | "no-useless-computed-key" | "no-useless-concat" | "no-useless-constructor" | "no-useless-escape" | "no-useless-rename" | "no-useless-return" | "no-var" | "no-void" | "no-warning-comments" | "no-whitespace-before-property" | "no-with" | "nonblock-statement-body-position" | "object-curly-newline" | "object-curly-spacing" | "object-property-newline" | "object-shorthand" | "one-var" | "one-var-declaration-per-line" | "operator-assignment" | "operator-linebreak" | "padded-blocks" | "padding-line-between-statements" | "prefer-arrow-callback" | "prefer-const" | "prefer-destructuring" | "prefer-exponentiation-operator" | "prefer-named-capture-group" | "prefer-numeric-literals" | "prefer-object-has-own" | "prefer-object-spread" | "prefer-promise-reject-errors" | "prefer-reflect" | "prefer-regex-literals" | "prefer-rest-params" | "prefer-spread" | "prefer-template" | "quote-props" | "quotes" | "radix" | "require-atomic-updates" | "require-await" | "require-unicode-regexp" | "require-yield" | "rest-spread-spacing" | "semi" | "semi-spacing" | "semi-style" | "sort-imports" | "sort-keys" | "sort-vars" | "space-before-blocks" | "space-before-function-paren" | "space-in-parens" | "space-infix-ops" | "space-unary-ops" | "spaced-comment" | "strict" | "switch-colon-spacing" | "symbol-description" | "template-curly-spacing" | "template-tag-spacing" | "unicode-bom" | "use-isnan" | "valid-typeof" | "vars-on-top" | "wrap-iife" | "wrap-regex" | "yield-star-spacing" | "yoda" | "antfu/consistent-chaining" | "antfu/consistent-list-newline" | "antfu/curly" | "antfu/if-newline" | "antfu/import-dedupe" | "antfu/indent-unindent" | "antfu/no-import-dist" | "antfu/no-import-node-modules-by-path" | "antfu/no-top-level-await" | "antfu/no-ts-export-equal" | "antfu/top-level-function" | "command/command" | "de-morgan/no-negated-conjunction" | "de-morgan/no-negated-disjunction" | "eslint-comments/disable-enable-pair" | "eslint-comments/no-aggregating-enable" | "eslint-comments/no-duplicate-disable" | "eslint-comments/no-restricted-disable" | "eslint-comments/no-unlimited-disable" | "eslint-comments/no-unused-disable" | "eslint-comments/no-unused-enable" | "eslint-comments/no-use" | "eslint-comments/require-description" | "import/consistent-type-specifier-style" | "import/default" | "import/dynamic-import-chunkname" | "import/export" | "import/exports-last" | "import/extensions" | "import/first" | "import/group-exports" | "import/imports-first" | "import/max-dependencies" | "import/named" | "import/namespace" | "import/newline-after-import" | "import/no-absolute-path" | "import/no-amd" | "import/no-anonymous-default-export" | "import/no-commonjs" | "import/no-cycle" | "import/no-default-export" | "import/no-deprecated" | "import/no-duplicates" | "import/no-dynamic-require" | "import/no-empty-named-blocks" | "import/no-extraneous-dependencies" | "import/no-import-module-exports" | "import/no-internal-modules" | "import/no-mutable-exports" | "import/no-named-as-default" | "import/no-named-as-default-member" | "import/no-named-default" | "import/no-named-export" | "import/no-namespace" | "import/no-nodejs-modules" | "import/no-relative-packages" | "import/no-relative-parent-imports" | "import/no-rename-default" | "import/no-restricted-paths" | "import/no-self-import" | "import/no-unassigned-import" | "import/no-unresolved" | "import/no-unused-modules" | "import/no-useless-path-segments" | "import/no-webpack-loader-syntax" | "import/order" | "import/prefer-default-export" | "import/unambiguous" | "unused-imports/no-unused-imports" | "unused-imports/no-unused-vars" | "jsdoc/check-access" | "jsdoc/check-alignment" | "jsdoc/check-examples" | "jsdoc/check-indentation" | "jsdoc/check-line-alignment" | "jsdoc/check-param-names" | "jsdoc/check-property-names" | "jsdoc/check-syntax" | "jsdoc/check-tag-names" | "jsdoc/check-template-names" | "jsdoc/check-types" | "jsdoc/check-values" | "jsdoc/convert-to-jsdoc-comments" | "jsdoc/empty-tags" | "jsdoc/implements-on-classes" | "jsdoc/imports-as-dependencies" | "jsdoc/informative-docs" | "jsdoc/lines-before-block" | "jsdoc/match-description" | "jsdoc/match-name" | "jsdoc/multiline-blocks" | "jsdoc/no-bad-blocks" | "jsdoc/no-blank-block-descriptions" | "jsdoc/no-blank-blocks" | "jsdoc/no-defaults" | "jsdoc/no-missing-syntax" | "jsdoc/no-multi-asterisks" | "jsdoc/no-restricted-syntax" | "jsdoc/no-types" | "jsdoc/no-undefined-types" | "jsdoc/require-asterisk-prefix" | "jsdoc/require-description" | "jsdoc/require-description-complete-sentence" | "jsdoc/require-example" | "jsdoc/require-file-overview" | "jsdoc/require-hyphen-before-param-description" | "jsdoc/require-jsdoc" | "jsdoc/require-param" | "jsdoc/require-param-description" | "jsdoc/require-param-name" | "jsdoc/require-param-type" | "jsdoc/require-property" | "jsdoc/require-property-description" | "jsdoc/require-property-name" | "jsdoc/require-property-type" | "jsdoc/require-returns" | "jsdoc/require-returns-check" | "jsdoc/require-returns-description" | "jsdoc/require-returns-type" | "jsdoc/require-template" | "jsdoc/require-throws" | "jsdoc/require-yields" | "jsdoc/require-yields-check" | "jsdoc/sort-tags" | "jsdoc/tag-lines" | "jsdoc/text-escaping" | "jsdoc/valid-types" | "jsonc/array-bracket-newline" | "jsonc/array-bracket-spacing" | "jsonc/array-element-newline" | "jsonc/auto" | "jsonc/comma-dangle" | "jsonc/comma-style" | "jsonc/indent" | "jsonc/key-name-casing" | "jsonc/key-spacing" | "jsonc/no-bigint-literals" | "jsonc/no-binary-expression" | "jsonc/no-binary-numeric-literals" | "jsonc/no-comments" | "jsonc/no-dupe-keys" | "jsonc/no-escape-sequence-in-identifier" | "jsonc/no-floating-decimal" | "jsonc/no-hexadecimal-numeric-literals" | "jsonc/no-infinity" | "jsonc/no-irregular-whitespace" | "jsonc/no-multi-str" | "jsonc/no-nan" | "jsonc/no-number-props" | "jsonc/no-numeric-separators" | "jsonc/no-octal" | "jsonc/no-octal-escape" | "jsonc/no-octal-numeric-literals" | "jsonc/no-parenthesized" | "jsonc/no-plus-sign" | "jsonc/no-regexp-literals" | "jsonc/no-sparse-arrays" | "jsonc/no-template-literals" | "jsonc/no-undefined-value" | "jsonc/no-unicode-codepoint-escapes" | "jsonc/no-useless-escape" | "jsonc/object-curly-newline" | "jsonc/object-curly-spacing" | "jsonc/object-property-newline" | "jsonc/quote-props" | "jsonc/quotes" | "jsonc/sort-array-values" | "jsonc/sort-keys" | "jsonc/space-unary-ops" | "jsonc/valid-json-number" | "jsonc/vue-custom-block/no-parsing-error" | "markdown/fenced-code-language" | "markdown/heading-increment" | "markdown/no-duplicate-headings" | "markdown/no-empty-links" | "markdown/no-html" | "markdown/no-invalid-label-refs" | "markdown/no-missing-label-refs" | "n/callback-return" | "n/exports-style" | "n/file-extension-in-import" | "n/global-require" | "n/handle-callback-err" | "n/hashbang" | "n/no-callback-literal" | "n/no-deprecated-api" | "n/no-exports-assign" | "n/no-extraneous-import" | "n/no-extraneous-require" | "n/no-hide-core-modules" | "n/no-missing-import" | "n/no-missing-require" | "n/no-mixed-requires" | "n/no-new-require" | "n/no-path-concat" | "n/no-process-env" | "n/no-process-exit" | "n/no-restricted-import" | "n/no-restricted-require" | "n/no-sync" | "n/no-unpublished-bin" | "n/no-unpublished-import" | "n/no-unpublished-require" | "n/no-unsupported-features/es-builtins" | "n/no-unsupported-features/es-syntax" | "n/no-unsupported-features/node-builtins" | "n/prefer-global/buffer" | "n/prefer-global/console" | "n/prefer-global/process" | "n/prefer-global/text-decoder" | "n/prefer-global/text-encoder" | "n/prefer-global/url" | "n/prefer-global/url-search-params" | "n/prefer-node-protocol" | "n/prefer-promises/dns" | "n/prefer-promises/fs" | "n/process-exit-as-throw" | "n/shebang" | "no-only-tests/no-only-tests" | "perfectionist/sort-array-includes" | "perfectionist/sort-classes" | "perfectionist/sort-decorators" | "perfectionist/sort-enums" | "perfectionist/sort-exports" | "perfectionist/sort-heritage-clauses" | "perfectionist/sort-imports" | "perfectionist/sort-interfaces" | "perfectionist/sort-intersection-types" | "perfectionist/sort-jsx-props" | "perfectionist/sort-maps" | "perfectionist/sort-modules" | "perfectionist/sort-named-exports" | "perfectionist/sort-named-imports" | "perfectionist/sort-object-types" | "perfectionist/sort-objects" | "perfectionist/sort-sets" | "perfectionist/sort-switch-case" | "perfectionist/sort-union-types" | "perfectionist/sort-variable-declarations" | "react-hooks/exhaustive-deps" | "react-hooks/rules-of-hooks" | "react-refresh/only-export-components" | "react/boolean-prop-naming" | "react/button-has-type" | "react/checked-requires-onchange-or-readonly" | "react/default-props-match-prop-types" | "react/destructuring-assignment" | "react/display-name" | "react/forbid-component-props" | "react/forbid-dom-props" | "react/forbid-elements" | "react/forbid-foreign-prop-types" | "react/forbid-prop-types" | "react/forward-ref-uses-ref" | "react/function-component-definition" | "react/hook-use-state" | "react/iframe-missing-sandbox" | "react/jsx-boolean-value" | "react/jsx-child-element-spacing" | "react/jsx-closing-bracket-location" | "react/jsx-closing-tag-location" | "react/jsx-curly-brace-presence" | "react/jsx-curly-newline" | "react/jsx-curly-spacing" | "react/jsx-equals-spacing" | "react/jsx-filename-extension" | "react/jsx-first-prop-new-line" | "react/jsx-fragments" | "react/jsx-handler-names" | "react/jsx-indent" | "react/jsx-indent-props" | "react/jsx-key" | "react/jsx-max-depth" | "react/jsx-max-props-per-line" | "react/jsx-newline" | "react/jsx-no-bind" | "react/jsx-no-comment-textnodes" | "react/jsx-no-constructed-context-values" | "react/jsx-no-duplicate-props" | "react/jsx-no-leaked-render" | "react/jsx-no-literals" | "react/jsx-no-script-url" | "react/jsx-no-target-blank" | "react/jsx-no-undef" | "react/jsx-no-useless-fragment" | "react/jsx-one-expression-per-line" | "react/jsx-pascal-case" | "react/jsx-props-no-multi-spaces" | "react/jsx-props-no-spread-multi" | "react/jsx-props-no-spreading" | "react/jsx-sort-default-props" | "react/jsx-sort-props" | "react/jsx-space-before-closing" | "react/jsx-tag-spacing" | "react/jsx-uses-react" | "react/jsx-uses-vars" | "react/jsx-wrap-multilines" | "react/no-access-state-in-setstate" | "react/no-adjacent-inline-elements" | "react/no-array-index-key" | "react/no-arrow-function-lifecycle" | "react/no-children-prop" | "react/no-danger" | "react/no-danger-with-children" | "react/no-deprecated" | "react/no-did-mount-set-state" | "react/no-did-update-set-state" | "react/no-direct-mutation-state" | "react/no-find-dom-node" | "react/no-invalid-html-attribute" | "react/no-is-mounted" | "react/no-multi-comp" | "react/no-namespace" | "react/no-object-type-as-default-prop" | "react/no-redundant-should-component-update" | "react/no-render-return-value" | "react/no-set-state" | "react/no-string-refs" | "react/no-this-in-sfc" | "react/no-typos" | "react/no-unescaped-entities" | "react/no-unknown-property" | "react/no-unsafe" | "react/no-unstable-nested-components" | "react/no-unused-class-component-methods" | "react/no-unused-prop-types" | "react/no-unused-state" | "react/no-will-update-set-state" | "react/prefer-es6-class" | "react/prefer-exact-props" | "react/prefer-read-only-props" | "react/prefer-stateless-function" | "react/prop-types" | "react/react-in-jsx-scope" | "react/require-default-props" | "react/require-optimization" | "react/require-render-return" | "react/self-closing-comp" | "react/sort-comp" | "react/sort-default-props" | "react/sort-prop-types" | "react/state-in-constructor" | "react/static-property-placement" | "react/style-prop-object" | "react/void-dom-elements-no-children" | "@stylistic/array-bracket-newline" | "@stylistic/array-bracket-spacing" | "@stylistic/array-element-newline" | "@stylistic/arrow-parens" | "@stylistic/arrow-spacing" | "@stylistic/block-spacing" | "@stylistic/brace-style" | "@stylistic/comma-dangle" | "@stylistic/comma-spacing" | "@stylistic/comma-style" | "@stylistic/computed-property-spacing" | "@stylistic/curly-newline" | "@stylistic/dot-location" | "@stylistic/eol-last" | "@stylistic/func-call-spacing" | "@stylistic/function-call-argument-newline" | "@stylistic/function-call-spacing" | "@stylistic/function-paren-newline" | "@stylistic/generator-star-spacing" | "@stylistic/implicit-arrow-linebreak" | "@stylistic/indent" | "@stylistic/indent-binary-ops" | "@stylistic/jsx-child-element-spacing" | "@stylistic/jsx-closing-bracket-location" | "@stylistic/jsx-closing-tag-location" | "@stylistic/jsx-curly-brace-presence" | "@stylistic/jsx-curly-newline" | "@stylistic/jsx-curly-spacing" | "@stylistic/jsx-equals-spacing" | "@stylistic/jsx-first-prop-new-line" | "@stylistic/jsx-function-call-newline" | "@stylistic/jsx-indent" | "@stylistic/jsx-indent-props" | "@stylistic/jsx-max-props-per-line" | "@stylistic/jsx-newline" | "@stylistic/jsx-one-expression-per-line" | "@stylistic/jsx-pascal-case" | "@stylistic/jsx-props-no-multi-spaces" | "@stylistic/jsx-quotes" | "@stylistic/jsx-self-closing-comp" | "@stylistic/jsx-sort-props" | "@stylistic/jsx-tag-spacing" | "@stylistic/jsx-wrap-multilines" | "@stylistic/key-spacing" | "@stylistic/keyword-spacing" | "@stylistic/line-comment-position" | "@stylistic/linebreak-style" | "@stylistic/lines-around-comment" | "@stylistic/lines-between-class-members" | "@stylistic/max-len" | "@stylistic/max-statements-per-line" | "@stylistic/member-delimiter-style" | "@stylistic/multiline-comment-style" | "@stylistic/multiline-ternary" | "@stylistic/new-parens" | "@stylistic/newline-per-chained-call" | "@stylistic/no-confusing-arrow" | "@stylistic/no-extra-parens" | "@stylistic/no-extra-semi" | "@stylistic/no-floating-decimal" | "@stylistic/no-mixed-operators" | "@stylistic/no-mixed-spaces-and-tabs" | "@stylistic/no-multi-spaces" | "@stylistic/no-multiple-empty-lines" | "@stylistic/no-tabs" | "@stylistic/no-trailing-spaces" | "@stylistic/no-whitespace-before-property" | "@stylistic/nonblock-statement-body-position" | "@stylistic/object-curly-newline" | "@stylistic/object-curly-spacing" | "@stylistic/object-property-newline" | "@stylistic/one-var-declaration-per-line" | "@stylistic/operator-linebreak" | "@stylistic/padded-blocks" | "@stylistic/padding-line-between-statements" | "@stylistic/quote-props" | "@stylistic/quotes" | "@stylistic/rest-spread-spacing" | "@stylistic/semi" | "@stylistic/semi-spacing" | "@stylistic/semi-style" | "@stylistic/space-before-blocks" | "@stylistic/space-before-function-paren" | "@stylistic/space-in-parens" | "@stylistic/space-infix-ops" | "@stylistic/space-unary-ops" | "@stylistic/spaced-comment" | "@stylistic/switch-colon-spacing" | "@stylistic/template-curly-spacing" | "@stylistic/template-tag-spacing" | "@stylistic/type-annotation-spacing" | "@stylistic/type-generic-spacing" | "@stylistic/type-named-tuple-spacing" | "@stylistic/wrap-iife" | "@stylistic/wrap-regex" | "@stylistic/yield-star-spacing" | "toml/array-bracket-newline" | "toml/array-bracket-spacing" | "toml/array-element-newline" | "toml/comma-style" | "toml/indent" | "toml/inline-table-curly-spacing" | "toml/key-spacing" | "toml/keys-order" | "toml/no-mixed-type-in-array" | "toml/no-non-decimal-integer" | "toml/no-space-dots" | "toml/no-unreadable-number-separator" | "toml/padding-line-between-pairs" | "toml/padding-line-between-tables" | "toml/precision-of-fractional-seconds" | "toml/precision-of-integer" | "toml/quoted-keys" | "toml/space-eq-sign" | "toml/spaced-comment" | "toml/table-bracket-spacing" | "toml/tables-order" | "toml/vue-custom-block/no-parsing-error" | "tsdoc/syntax" | "@typescript-eslint/adjacent-overload-signatures" | "@typescript-eslint/array-type" | "@typescript-eslint/await-thenable" | "@typescript-eslint/ban-ts-comment" | "@typescript-eslint/ban-tslint-comment" | "@typescript-eslint/class-literal-property-style" | "@typescript-eslint/class-methods-use-this" | "@typescript-eslint/consistent-generic-constructors" | "@typescript-eslint/consistent-indexed-object-style" | "@typescript-eslint/consistent-return" | "@typescript-eslint/consistent-type-assertions" | "@typescript-eslint/consistent-type-definitions" | "@typescript-eslint/consistent-type-exports" | "@typescript-eslint/consistent-type-imports" | "@typescript-eslint/default-param-last" | "@typescript-eslint/dot-notation" | "@typescript-eslint/explicit-function-return-type" | "@typescript-eslint/explicit-member-accessibility" | "@typescript-eslint/explicit-module-boundary-types" | "@typescript-eslint/init-declarations" | "@typescript-eslint/max-params" | "@typescript-eslint/member-ordering" | "@typescript-eslint/method-signature-style" | "@typescript-eslint/naming-convention" | "@typescript-eslint/no-array-constructor" | "@typescript-eslint/no-array-delete" | "@typescript-eslint/no-base-to-string" | "@typescript-eslint/no-confusing-non-null-assertion" | "@typescript-eslint/no-confusing-void-expression" | "@typescript-eslint/no-deprecated" | "@typescript-eslint/no-dupe-class-members" | "@typescript-eslint/no-duplicate-enum-values" | "@typescript-eslint/no-duplicate-type-constituents" | "@typescript-eslint/no-dynamic-delete" | "@typescript-eslint/no-empty-function" | "@typescript-eslint/no-empty-interface" | "@typescript-eslint/no-empty-object-type" | "@typescript-eslint/no-explicit-any" | "@typescript-eslint/no-extra-non-null-assertion" | "@typescript-eslint/no-extraneous-class" | "@typescript-eslint/no-floating-promises" | "@typescript-eslint/no-for-in-array" | "@typescript-eslint/no-implied-eval" | "@typescript-eslint/no-import-type-side-effects" | "@typescript-eslint/no-inferrable-types" | "@typescript-eslint/no-invalid-this" | "@typescript-eslint/no-invalid-void-type" | "@typescript-eslint/no-loop-func" | "@typescript-eslint/no-loss-of-precision" | "@typescript-eslint/no-magic-numbers" | "@typescript-eslint/no-meaningless-void-operator" | "@typescript-eslint/no-misused-new" | "@typescript-eslint/no-misused-promises" | "@typescript-eslint/no-misused-spread" | "@typescript-eslint/no-mixed-enums" | "@typescript-eslint/no-namespace" | "@typescript-eslint/no-non-null-asserted-nullish-coalescing" | "@typescript-eslint/no-non-null-asserted-optional-chain" | "@typescript-eslint/no-non-null-assertion" | "@typescript-eslint/no-redeclare" | "@typescript-eslint/no-redundant-type-constituents" | "@typescript-eslint/no-require-imports" | "@typescript-eslint/no-restricted-imports" | "@typescript-eslint/no-restricted-types" | "@typescript-eslint/no-shadow" | "@typescript-eslint/no-this-alias" | "@typescript-eslint/no-type-alias" | "@typescript-eslint/no-unnecessary-boolean-literal-compare" | "@typescript-eslint/no-unnecessary-condition" | "@typescript-eslint/no-unnecessary-parameter-property-assignment" | "@typescript-eslint/no-unnecessary-qualifier" | "@typescript-eslint/no-unnecessary-template-expression" | "@typescript-eslint/no-unnecessary-type-arguments" | "@typescript-eslint/no-unnecessary-type-assertion" | "@typescript-eslint/no-unnecessary-type-constraint" | "@typescript-eslint/no-unnecessary-type-conversion" | "@typescript-eslint/no-unnecessary-type-parameters" | "@typescript-eslint/no-unsafe-argument" | "@typescript-eslint/no-unsafe-assignment" | "@typescript-eslint/no-unsafe-call" | "@typescript-eslint/no-unsafe-declaration-merging" | "@typescript-eslint/no-unsafe-enum-comparison" | "@typescript-eslint/no-unsafe-function-type" | "@typescript-eslint/no-unsafe-member-access" | "@typescript-eslint/no-unsafe-return" | "@typescript-eslint/no-unsafe-type-assertion" | "@typescript-eslint/no-unsafe-unary-minus" | "@typescript-eslint/no-unused-expressions" | "@typescript-eslint/no-unused-vars" | "@typescript-eslint/no-use-before-define" | "@typescript-eslint/no-useless-constructor" | "@typescript-eslint/no-useless-empty-export" | "@typescript-eslint/no-var-requires" | "@typescript-eslint/no-wrapper-object-types" | "@typescript-eslint/non-nullable-type-assertion-style" | "@typescript-eslint/only-throw-error" | "@typescript-eslint/parameter-properties" | "@typescript-eslint/prefer-as-const" | "@typescript-eslint/prefer-destructuring" | "@typescript-eslint/prefer-enum-initializers" | "@typescript-eslint/prefer-find" | "@typescript-eslint/prefer-for-of" | "@typescript-eslint/prefer-function-type" | "@typescript-eslint/prefer-includes" | "@typescript-eslint/prefer-literal-enum-member" | "@typescript-eslint/prefer-namespace-keyword" | "@typescript-eslint/prefer-nullish-coalescing" | "@typescript-eslint/prefer-optional-chain" | "@typescript-eslint/prefer-promise-reject-errors" | "@typescript-eslint/prefer-readonly" | "@typescript-eslint/prefer-readonly-parameter-types" | "@typescript-eslint/prefer-reduce-type-parameter" | "@typescript-eslint/prefer-regexp-exec" | "@typescript-eslint/prefer-return-this-type" | "@typescript-eslint/prefer-string-starts-ends-with" | "@typescript-eslint/prefer-ts-expect-error" | "@typescript-eslint/promise-function-async" | "@typescript-eslint/related-getter-setter-pairs" | "@typescript-eslint/require-array-sort-compare" | "@typescript-eslint/require-await" | "@typescript-eslint/restrict-plus-operands" | "@typescript-eslint/restrict-template-expressions" | "@typescript-eslint/return-await" | "@typescript-eslint/sort-type-constituents" | "@typescript-eslint/strict-boolean-expressions" | "@typescript-eslint/switch-exhaustiveness-check" | "@typescript-eslint/triple-slash-reference" | "@typescript-eslint/typedef" | "@typescript-eslint/unbound-method" | "@typescript-eslint/unified-signatures" | "@typescript-eslint/use-unknown-in-catch-callback-variable" | "unicorn/better-regex" | "unicorn/catch-error-name" | "unicorn/consistent-assert" | "unicorn/consistent-date-clone" | "unicorn/consistent-destructuring" | "unicorn/consistent-empty-array-spread" | "unicorn/consistent-existence-index-check" | "unicorn/consistent-function-scoping" | "unicorn/custom-error-definition" | "unicorn/empty-brace-spaces" | "unicorn/error-message" | "unicorn/escape-case" | "unicorn/expiring-todo-comments" | "unicorn/explicit-length-check" | "unicorn/filename-case" | "unicorn/import-style" | "unicorn/new-for-builtins" | "unicorn/no-abusive-eslint-disable" | "unicorn/no-accessor-recursion" | "unicorn/no-anonymous-default-export" | "unicorn/no-array-callback-reference" | "unicorn/no-array-for-each" | "unicorn/no-array-method-this-argument" | "unicorn/no-array-push-push" | "unicorn/no-array-reduce" | "unicorn/no-await-expression-member" | "unicorn/no-await-in-promise-methods" | "unicorn/no-console-spaces" | "unicorn/no-document-cookie" | "unicorn/no-empty-file" | "unicorn/no-for-loop" | "unicorn/no-hex-escape" | "unicorn/no-instanceof-array" | "unicorn/no-instanceof-builtins" | "unicorn/no-invalid-fetch-options" | "unicorn/no-invalid-remove-event-listener" | "unicorn/no-keyword-prefix" | "unicorn/no-length-as-slice-end" | "unicorn/no-lonely-if" | "unicorn/no-magic-array-flat-depth" | "unicorn/no-named-default" | "unicorn/no-negated-condition" | "unicorn/no-negation-in-equality-check" | "unicorn/no-nested-ternary" | "unicorn/no-new-array" | "unicorn/no-new-buffer" | "unicorn/no-null" | "unicorn/no-object-as-default-parameter" | "unicorn/no-process-exit" | "unicorn/no-single-promise-in-promise-methods" | "unicorn/no-static-only-class" | "unicorn/no-thenable" | "unicorn/no-this-assignment" | "unicorn/no-typeof-undefined" | "unicorn/no-unnecessary-array-flat-depth" | "unicorn/no-unnecessary-array-splice-count" | "unicorn/no-unnecessary-await" | "unicorn/no-unnecessary-polyfills" | "unicorn/no-unnecessary-slice-end" | "unicorn/no-unreadable-array-destructuring" | "unicorn/no-unreadable-iife" | "unicorn/no-unused-properties" | "unicorn/no-useless-fallback-in-spread" | "unicorn/no-useless-length-check" | "unicorn/no-useless-promise-resolve-reject" | "unicorn/no-useless-spread" | "unicorn/no-useless-switch-case" | "unicorn/no-useless-undefined" | "unicorn/no-zero-fractions" | "unicorn/number-literal-case" | "unicorn/numeric-separators-style" | "unicorn/prefer-add-event-listener" | "unicorn/prefer-array-find" | "unicorn/prefer-array-flat" | "unicorn/prefer-array-flat-map" | "unicorn/prefer-array-index-of" | "unicorn/prefer-array-some" | "unicorn/prefer-at" | "unicorn/prefer-blob-reading-methods" | "unicorn/prefer-code-point" | "unicorn/prefer-date-now" | "unicorn/prefer-default-parameters" | "unicorn/prefer-dom-node-append" | "unicorn/prefer-dom-node-dataset" | "unicorn/prefer-dom-node-remove" | "unicorn/prefer-dom-node-text-content" | "unicorn/prefer-event-target" | "unicorn/prefer-export-from" | "unicorn/prefer-global-this" | "unicorn/prefer-import-meta-properties" | "unicorn/prefer-includes" | "unicorn/prefer-json-parse-buffer" | "unicorn/prefer-keyboard-event-key" | "unicorn/prefer-logical-operator-over-ternary" | "unicorn/prefer-math-min-max" | "unicorn/prefer-math-trunc" | "unicorn/prefer-modern-dom-apis" | "unicorn/prefer-modern-math-apis" | "unicorn/prefer-module" | "unicorn/prefer-native-coercion-functions" | "unicorn/prefer-negative-index" | "unicorn/prefer-node-protocol" | "unicorn/prefer-number-properties" | "unicorn/prefer-object-from-entries" | "unicorn/prefer-optional-catch-binding" | "unicorn/prefer-prototype-methods" | "unicorn/prefer-query-selector" | "unicorn/prefer-reflect-apply" | "unicorn/prefer-regexp-test" | "unicorn/prefer-set-has" | "unicorn/prefer-set-size" | "unicorn/prefer-single-call" | "unicorn/prefer-spread" | "unicorn/prefer-string-raw" | "unicorn/prefer-string-replace-all" | "unicorn/prefer-string-slice" | "unicorn/prefer-string-starts-ends-with" | "unicorn/prefer-string-trim-start-end" | "unicorn/prefer-structured-clone" | "unicorn/prefer-switch" | "unicorn/prefer-ternary" | "unicorn/prefer-top-level-await" | "unicorn/prefer-type-error" | "unicorn/prevent-abbreviations" | "unicorn/relative-url-style" | "unicorn/require-array-join-separator" | "unicorn/require-number-to-fixed-digits-argument" | "unicorn/require-post-message-target-origin" | "unicorn/string-content" | "unicorn/switch-case-braces" | "unicorn/template-indent" | "unicorn/text-encoding-identifier-case" | "unicorn/throw-new-error" | "vitest/consistent-test-filename" | "vitest/consistent-test-it" | "vitest/expect-expect" | "vitest/max-expects" | "vitest/max-nested-describe" | "vitest/no-alias-methods" | "vitest/no-commented-out-tests" | "vitest/no-conditional-expect" | "vitest/no-conditional-in-test" | "vitest/no-conditional-tests" | "vitest/no-disabled-tests" | "vitest/no-done-callback" | "vitest/no-duplicate-hooks" | "vitest/no-focused-tests" | "vitest/no-hooks" | "vitest/no-identical-title" | "vitest/no-import-node-test" | "vitest/no-interpolation-in-snapshots" | "vitest/no-large-snapshots" | "vitest/no-mocks-import" | "vitest/no-restricted-matchers" | "vitest/no-restricted-vi-methods" | "vitest/no-standalone-expect" | "vitest/no-test-prefixes" | "vitest/no-test-return-statement" | "vitest/padding-around-after-all-blocks" | "vitest/padding-around-after-each-blocks" | "vitest/padding-around-all" | "vitest/padding-around-before-all-blocks" | "vitest/padding-around-before-each-blocks" | "vitest/padding-around-describe-blocks" | "vitest/padding-around-expect-groups" | "vitest/padding-around-test-blocks" | "vitest/prefer-called-with" | "vitest/prefer-comparison-matcher" | "vitest/prefer-describe-function-title" | "vitest/prefer-each" | "vitest/prefer-equality-matcher" | "vitest/prefer-expect-assertions" | "vitest/prefer-expect-resolves" | "vitest/prefer-hooks-in-order" | "vitest/prefer-hooks-on-top" | "vitest/prefer-lowercase-title" | "vitest/prefer-mock-promise-shorthand" | "vitest/prefer-snapshot-hint" | "vitest/prefer-spy-on" | "vitest/prefer-strict-boolean-matchers" | "vitest/prefer-strict-equal" | "vitest/prefer-to-be" | "vitest/prefer-to-be-falsy" | "vitest/prefer-to-be-object" | "vitest/prefer-to-be-truthy" | "vitest/prefer-to-contain" | "vitest/prefer-to-have-length" | "vitest/prefer-todo" | "vitest/prefer-vi-mocked" | "vitest/require-hook" | "vitest/require-local-test-context-for-concurrent-snapshots" | "vitest/require-mock-type-parameters" | "vitest/require-to-throw-message" | "vitest/require-top-level-describe" | "vitest/valid-describe-callback" | "vitest/valid-expect" | "vitest/valid-expect-in-promise" | "vitest/valid-title" | "yaml/block-mapping" | "yaml/block-mapping-colon-indicator-newline" | "yaml/block-mapping-question-indicator-newline" | "yaml/block-sequence" | "yaml/block-sequence-hyphen-indicator-newline" | "yaml/file-extension" | "yaml/flow-mapping-curly-newline" | "yaml/flow-mapping-curly-spacing" | "yaml/flow-sequence-bracket-newline" | "yaml/flow-sequence-bracket-spacing" | "yaml/indent" | "yaml/key-name-casing" | "yaml/key-spacing" | "yaml/no-empty-document" | "yaml/no-empty-key" | "yaml/no-empty-mapping-value" | "yaml/no-empty-sequence-entry" | "yaml/no-irregular-whitespace" | "yaml/no-multiple-empty-lines" | "yaml/no-tab-indent" | "yaml/no-trailing-zeros" | "yaml/plain-scalar" | "yaml/quotes" | "yaml/require-string-key" | "yaml/sort-keys" | "yaml/sort-sequence-values" | "yaml/spaced-comment" | "yaml/vue-custom-block/no-parsing-error")[];
|
|
1
|
+
export declare const FIXABLE_RULES: ("accessor-pairs" | "array-bracket-newline" | "array-bracket-spacing" | "array-callback-return" | "array-element-newline" | "arrow-body-style" | "arrow-parens" | "arrow-spacing" | "block-scoped-var" | "block-spacing" | "brace-style" | "callback-return" | "camelcase" | "capitalized-comments" | "class-methods-use-this" | "comma-dangle" | "comma-spacing" | "comma-style" | "complexity" | "computed-property-spacing" | "consistent-return" | "consistent-this" | "constructor-super" | "curly" | "default-case" | "default-case-last" | "default-param-last" | "dot-location" | "dot-notation" | "eol-last" | "eqeqeq" | "for-direction" | "func-call-spacing" | "func-name-matching" | "func-names" | "func-style" | "function-call-argument-newline" | "function-paren-newline" | "generator-star-spacing" | "getter-return" | "global-require" | "grouped-accessor-pairs" | "guard-for-in" | "handle-callback-err" | "id-blacklist" | "id-denylist" | "id-length" | "id-match" | "implicit-arrow-linebreak" | "indent" | "indent-legacy" | "init-declarations" | "jsx-quotes" | "key-spacing" | "keyword-spacing" | "line-comment-position" | "linebreak-style" | "lines-around-comment" | "lines-around-directive" | "lines-between-class-members" | "logical-assignment-operators" | "max-classes-per-file" | "max-depth" | "max-len" | "max-lines" | "max-lines-per-function" | "max-nested-callbacks" | "max-params" | "max-statements" | "max-statements-per-line" | "multiline-comment-style" | "multiline-ternary" | "new-cap" | "new-parens" | "newline-after-var" | "newline-before-return" | "newline-per-chained-call" | "no-alert" | "no-array-constructor" | "no-async-promise-executor" | "no-await-in-loop" | "no-bitwise" | "no-buffer-constructor" | "no-caller" | "no-case-declarations" | "no-catch-shadow" | "no-class-assign" | "no-compare-neg-zero" | "no-cond-assign" | "no-confusing-arrow" | "no-console" | "no-const-assign" | "no-constant-binary-expression" | "no-constant-condition" | "no-constructor-return" | "no-continue" | "no-control-regex" | "no-debugger" | "no-delete-var" | "no-div-regex" | "no-dupe-args" | "no-dupe-class-members" | "no-dupe-else-if" | "no-dupe-keys" | "no-duplicate-case" | "no-duplicate-imports" | "no-else-return" | "no-empty" | "no-empty-character-class" | "no-empty-function" | "no-empty-pattern" | "no-empty-static-block" | "no-eq-null" | "no-eval" | "no-ex-assign" | "no-extend-native" | "no-extra-bind" | "no-extra-boolean-cast" | "no-extra-label" | "no-extra-parens" | "no-extra-semi" | "no-fallthrough" | "no-floating-decimal" | "no-func-assign" | "no-global-assign" | "no-implicit-coercion" | "no-implicit-globals" | "no-implied-eval" | "no-import-assign" | "no-inline-comments" | "no-inner-declarations" | "no-invalid-regexp" | "no-invalid-this" | "no-irregular-whitespace" | "no-iterator" | "no-label-var" | "no-labels" | "no-lone-blocks" | "no-lonely-if" | "no-loop-func" | "no-loss-of-precision" | "no-magic-numbers" | "no-misleading-character-class" | "no-mixed-operators" | "no-mixed-requires" | "no-mixed-spaces-and-tabs" | "no-multi-assign" | "no-multi-spaces" | "no-multi-str" | "no-multiple-empty-lines" | "no-native-reassign" | "no-negated-condition" | "no-negated-in-lhs" | "no-nested-ternary" | "no-new" | "no-new-func" | "no-new-native-nonconstructor" | "no-new-object" | "no-new-require" | "no-new-symbol" | "no-new-wrappers" | "no-nonoctal-decimal-escape" | "no-obj-calls" | "no-object-constructor" | "no-octal" | "no-octal-escape" | "no-param-reassign" | "no-path-concat" | "no-plusplus" | "no-process-env" | "no-process-exit" | "no-promise-executor-return" | "no-proto" | "no-prototype-builtins" | "no-redeclare" | "no-regex-spaces" | "no-restricted-exports" | "no-restricted-globals" | "no-restricted-imports" | "no-restricted-modules" | "no-restricted-properties" | "no-restricted-syntax" | "no-return-assign" | "no-return-await" | "no-script-url" | "no-self-assign" | "no-self-compare" | "no-sequences" | "no-setter-return" | "no-shadow" | "no-shadow-restricted-names" | "no-spaced-func" | "no-sparse-arrays" | "no-sync" | "no-tabs" | "no-template-curly-in-string" | "no-ternary" | "no-this-before-super" | "no-throw-literal" | "no-trailing-spaces" | "no-unassigned-vars" | "no-undef" | "no-undef-init" | "no-undefined" | "no-underscore-dangle" | "no-unexpected-multiline" | "no-unmodified-loop-condition" | "no-unneeded-ternary" | "no-unreachable" | "no-unreachable-loop" | "no-unsafe-finally" | "no-unsafe-negation" | "no-unsafe-optional-chaining" | "no-unused-expressions" | "no-unused-labels" | "no-unused-private-class-members" | "no-unused-vars" | "no-use-before-define" | "no-useless-assignment" | "no-useless-backreference" | "no-useless-call" | "no-useless-catch" | "no-useless-computed-key" | "no-useless-concat" | "no-useless-constructor" | "no-useless-escape" | "no-useless-rename" | "no-useless-return" | "no-var" | "no-void" | "no-warning-comments" | "no-whitespace-before-property" | "no-with" | "nonblock-statement-body-position" | "object-curly-newline" | "object-curly-spacing" | "object-property-newline" | "object-shorthand" | "one-var" | "one-var-declaration-per-line" | "operator-assignment" | "operator-linebreak" | "padded-blocks" | "padding-line-between-statements" | "prefer-arrow-callback" | "prefer-const" | "prefer-destructuring" | "prefer-exponentiation-operator" | "prefer-named-capture-group" | "prefer-numeric-literals" | "prefer-object-has-own" | "prefer-object-spread" | "prefer-promise-reject-errors" | "prefer-reflect" | "prefer-regex-literals" | "prefer-rest-params" | "prefer-spread" | "prefer-template" | "quote-props" | "quotes" | "radix" | "require-atomic-updates" | "require-await" | "require-unicode-regexp" | "require-yield" | "rest-spread-spacing" | "semi" | "semi-spacing" | "semi-style" | "sort-imports" | "sort-keys" | "sort-vars" | "space-before-blocks" | "space-before-function-paren" | "space-in-parens" | "space-infix-ops" | "space-unary-ops" | "spaced-comment" | "strict" | "switch-colon-spacing" | "symbol-description" | "template-curly-spacing" | "template-tag-spacing" | "unicode-bom" | "use-isnan" | "valid-typeof" | "vars-on-top" | "wrap-iife" | "wrap-regex" | "yield-star-spacing" | "yoda" | "antfu/consistent-chaining" | "antfu/consistent-list-newline" | "antfu/curly" | "antfu/if-newline" | "antfu/import-dedupe" | "antfu/indent-unindent" | "antfu/no-import-dist" | "antfu/no-import-node-modules-by-path" | "antfu/no-top-level-await" | "antfu/no-ts-export-equal" | "antfu/top-level-function" | "command/command" | "de-morgan/no-negated-conjunction" | "de-morgan/no-negated-disjunction" | "eslint-comments/disable-enable-pair" | "eslint-comments/no-aggregating-enable" | "eslint-comments/no-duplicate-disable" | "eslint-comments/no-restricted-disable" | "eslint-comments/no-unlimited-disable" | "eslint-comments/no-unused-disable" | "eslint-comments/no-unused-enable" | "eslint-comments/no-use" | "eslint-comments/require-description" | "import/consistent-type-specifier-style" | "import/default" | "import/dynamic-import-chunkname" | "import/export" | "import/exports-last" | "import/extensions" | "import/first" | "import/group-exports" | "import/imports-first" | "import/max-dependencies" | "import/named" | "import/namespace" | "import/newline-after-import" | "import/no-absolute-path" | "import/no-amd" | "import/no-anonymous-default-export" | "import/no-commonjs" | "import/no-cycle" | "import/no-default-export" | "import/no-deprecated" | "import/no-duplicates" | "import/no-dynamic-require" | "import/no-empty-named-blocks" | "import/no-extraneous-dependencies" | "import/no-import-module-exports" | "import/no-internal-modules" | "import/no-mutable-exports" | "import/no-named-as-default" | "import/no-named-as-default-member" | "import/no-named-default" | "import/no-named-export" | "import/no-namespace" | "import/no-nodejs-modules" | "import/no-relative-packages" | "import/no-relative-parent-imports" | "import/no-rename-default" | "import/no-restricted-paths" | "import/no-self-import" | "import/no-unassigned-import" | "import/no-unresolved" | "import/no-unused-modules" | "import/no-useless-path-segments" | "import/no-webpack-loader-syntax" | "import/order" | "import/prefer-default-export" | "import/unambiguous" | "unused-imports/no-unused-imports" | "unused-imports/no-unused-vars" | "jsdoc/check-access" | "jsdoc/check-alignment" | "jsdoc/check-examples" | "jsdoc/check-indentation" | "jsdoc/check-line-alignment" | "jsdoc/check-param-names" | "jsdoc/check-property-names" | "jsdoc/check-syntax" | "jsdoc/check-tag-names" | "jsdoc/check-template-names" | "jsdoc/check-types" | "jsdoc/check-values" | "jsdoc/convert-to-jsdoc-comments" | "jsdoc/empty-tags" | "jsdoc/implements-on-classes" | "jsdoc/imports-as-dependencies" | "jsdoc/informative-docs" | "jsdoc/lines-before-block" | "jsdoc/match-description" | "jsdoc/match-name" | "jsdoc/multiline-blocks" | "jsdoc/no-bad-blocks" | "jsdoc/no-blank-block-descriptions" | "jsdoc/no-blank-blocks" | "jsdoc/no-defaults" | "jsdoc/no-missing-syntax" | "jsdoc/no-multi-asterisks" | "jsdoc/no-restricted-syntax" | "jsdoc/no-types" | "jsdoc/no-undefined-types" | "jsdoc/require-asterisk-prefix" | "jsdoc/require-description" | "jsdoc/require-description-complete-sentence" | "jsdoc/require-example" | "jsdoc/require-file-overview" | "jsdoc/require-hyphen-before-param-description" | "jsdoc/require-jsdoc" | "jsdoc/require-param" | "jsdoc/require-param-description" | "jsdoc/require-param-name" | "jsdoc/require-param-type" | "jsdoc/require-property" | "jsdoc/require-property-description" | "jsdoc/require-property-name" | "jsdoc/require-property-type" | "jsdoc/require-returns" | "jsdoc/require-returns-check" | "jsdoc/require-returns-description" | "jsdoc/require-returns-type" | "jsdoc/require-template" | "jsdoc/require-throws" | "jsdoc/require-yields" | "jsdoc/require-yields-check" | "jsdoc/sort-tags" | "jsdoc/tag-lines" | "jsdoc/text-escaping" | "jsdoc/valid-types" | "jsonc/array-bracket-newline" | "jsonc/array-bracket-spacing" | "jsonc/array-element-newline" | "jsonc/auto" | "jsonc/comma-dangle" | "jsonc/comma-style" | "jsonc/indent" | "jsonc/key-name-casing" | "jsonc/key-spacing" | "jsonc/no-bigint-literals" | "jsonc/no-binary-expression" | "jsonc/no-binary-numeric-literals" | "jsonc/no-comments" | "jsonc/no-dupe-keys" | "jsonc/no-escape-sequence-in-identifier" | "jsonc/no-floating-decimal" | "jsonc/no-hexadecimal-numeric-literals" | "jsonc/no-infinity" | "jsonc/no-irregular-whitespace" | "jsonc/no-multi-str" | "jsonc/no-nan" | "jsonc/no-number-props" | "jsonc/no-numeric-separators" | "jsonc/no-octal" | "jsonc/no-octal-escape" | "jsonc/no-octal-numeric-literals" | "jsonc/no-parenthesized" | "jsonc/no-plus-sign" | "jsonc/no-regexp-literals" | "jsonc/no-sparse-arrays" | "jsonc/no-template-literals" | "jsonc/no-undefined-value" | "jsonc/no-unicode-codepoint-escapes" | "jsonc/no-useless-escape" | "jsonc/object-curly-newline" | "jsonc/object-curly-spacing" | "jsonc/object-property-newline" | "jsonc/quote-props" | "jsonc/quotes" | "jsonc/sort-array-values" | "jsonc/sort-keys" | "jsonc/space-unary-ops" | "jsonc/valid-json-number" | "jsonc/vue-custom-block/no-parsing-error" | "markdown/fenced-code-language" | "markdown/heading-increment" | "markdown/no-duplicate-definitions" | "markdown/no-duplicate-headings" | "markdown/no-empty-definitions" | "markdown/no-empty-images" | "markdown/no-empty-links" | "markdown/no-html" | "markdown/no-invalid-label-refs" | "markdown/no-missing-atx-heading-space" | "markdown/no-missing-label-refs" | "markdown/no-multiple-h1" | "markdown/require-alt-text" | "markdown/table-column-count" | "n/callback-return" | "n/exports-style" | "n/file-extension-in-import" | "n/global-require" | "n/handle-callback-err" | "n/hashbang" | "n/no-callback-literal" | "n/no-deprecated-api" | "n/no-exports-assign" | "n/no-extraneous-import" | "n/no-extraneous-require" | "n/no-hide-core-modules" | "n/no-missing-import" | "n/no-missing-require" | "n/no-mixed-requires" | "n/no-new-require" | "n/no-path-concat" | "n/no-process-env" | "n/no-process-exit" | "n/no-restricted-import" | "n/no-restricted-require" | "n/no-sync" | "n/no-top-level-await" | "n/no-unpublished-bin" | "n/no-unpublished-import" | "n/no-unpublished-require" | "n/no-unsupported-features/es-builtins" | "n/no-unsupported-features/es-syntax" | "n/no-unsupported-features/node-builtins" | "n/prefer-global/buffer" | "n/prefer-global/console" | "n/prefer-global/process" | "n/prefer-global/text-decoder" | "n/prefer-global/text-encoder" | "n/prefer-global/url" | "n/prefer-global/url-search-params" | "n/prefer-node-protocol" | "n/prefer-promises/dns" | "n/prefer-promises/fs" | "n/process-exit-as-throw" | "n/shebang" | "no-only-tests/no-only-tests" | "perfectionist/sort-array-includes" | "perfectionist/sort-classes" | "perfectionist/sort-decorators" | "perfectionist/sort-enums" | "perfectionist/sort-exports" | "perfectionist/sort-heritage-clauses" | "perfectionist/sort-imports" | "perfectionist/sort-interfaces" | "perfectionist/sort-intersection-types" | "perfectionist/sort-jsx-props" | "perfectionist/sort-maps" | "perfectionist/sort-modules" | "perfectionist/sort-named-exports" | "perfectionist/sort-named-imports" | "perfectionist/sort-object-types" | "perfectionist/sort-objects" | "perfectionist/sort-sets" | "perfectionist/sort-switch-case" | "perfectionist/sort-union-types" | "perfectionist/sort-variable-declarations" | "pnpm/json-enforce-catalog" | "pnpm/json-prefer-workspace-settings" | "pnpm/json-valid-catalog" | "pnpm/yaml-no-duplicate-catalog-item" | "pnpm/yaml-no-unused-catalog-item" | "react-hooks/exhaustive-deps" | "react-hooks/rules-of-hooks" | "react-refresh/only-export-components" | "react/boolean-prop-naming" | "react/button-has-type" | "react/checked-requires-onchange-or-readonly" | "react/default-props-match-prop-types" | "react/destructuring-assignment" | "react/display-name" | "react/forbid-component-props" | "react/forbid-dom-props" | "react/forbid-elements" | "react/forbid-foreign-prop-types" | "react/forbid-prop-types" | "react/forward-ref-uses-ref" | "react/function-component-definition" | "react/hook-use-state" | "react/iframe-missing-sandbox" | "react/jsx-boolean-value" | "react/jsx-child-element-spacing" | "react/jsx-closing-bracket-location" | "react/jsx-closing-tag-location" | "react/jsx-curly-brace-presence" | "react/jsx-curly-newline" | "react/jsx-curly-spacing" | "react/jsx-equals-spacing" | "react/jsx-filename-extension" | "react/jsx-first-prop-new-line" | "react/jsx-fragments" | "react/jsx-handler-names" | "react/jsx-indent" | "react/jsx-indent-props" | "react/jsx-key" | "react/jsx-max-depth" | "react/jsx-max-props-per-line" | "react/jsx-newline" | "react/jsx-no-bind" | "react/jsx-no-comment-textnodes" | "react/jsx-no-constructed-context-values" | "react/jsx-no-duplicate-props" | "react/jsx-no-leaked-render" | "react/jsx-no-literals" | "react/jsx-no-script-url" | "react/jsx-no-target-blank" | "react/jsx-no-undef" | "react/jsx-no-useless-fragment" | "react/jsx-one-expression-per-line" | "react/jsx-pascal-case" | "react/jsx-props-no-multi-spaces" | "react/jsx-props-no-spread-multi" | "react/jsx-props-no-spreading" | "react/jsx-sort-default-props" | "react/jsx-sort-props" | "react/jsx-space-before-closing" | "react/jsx-tag-spacing" | "react/jsx-uses-react" | "react/jsx-uses-vars" | "react/jsx-wrap-multilines" | "react/no-access-state-in-setstate" | "react/no-adjacent-inline-elements" | "react/no-array-index-key" | "react/no-arrow-function-lifecycle" | "react/no-children-prop" | "react/no-danger" | "react/no-danger-with-children" | "react/no-deprecated" | "react/no-did-mount-set-state" | "react/no-did-update-set-state" | "react/no-direct-mutation-state" | "react/no-find-dom-node" | "react/no-invalid-html-attribute" | "react/no-is-mounted" | "react/no-multi-comp" | "react/no-namespace" | "react/no-object-type-as-default-prop" | "react/no-redundant-should-component-update" | "react/no-render-return-value" | "react/no-set-state" | "react/no-string-refs" | "react/no-this-in-sfc" | "react/no-typos" | "react/no-unescaped-entities" | "react/no-unknown-property" | "react/no-unsafe" | "react/no-unstable-nested-components" | "react/no-unused-class-component-methods" | "react/no-unused-prop-types" | "react/no-unused-state" | "react/no-will-update-set-state" | "react/prefer-es6-class" | "react/prefer-exact-props" | "react/prefer-read-only-props" | "react/prefer-stateless-function" | "react/prop-types" | "react/react-in-jsx-scope" | "react/require-default-props" | "react/require-optimization" | "react/require-render-return" | "react/self-closing-comp" | "react/sort-comp" | "react/sort-default-props" | "react/sort-prop-types" | "react/state-in-constructor" | "react/static-property-placement" | "react/style-prop-object" | "react/void-dom-elements-no-children" | "@stylistic/array-bracket-newline" | "@stylistic/array-bracket-spacing" | "@stylistic/array-element-newline" | "@stylistic/arrow-parens" | "@stylistic/arrow-spacing" | "@stylistic/block-spacing" | "@stylistic/brace-style" | "@stylistic/comma-dangle" | "@stylistic/comma-spacing" | "@stylistic/comma-style" | "@stylistic/computed-property-spacing" | "@stylistic/curly-newline" | "@stylistic/dot-location" | "@stylistic/eol-last" | "@stylistic/func-call-spacing" | "@stylistic/function-call-argument-newline" | "@stylistic/function-call-spacing" | "@stylistic/function-paren-newline" | "@stylistic/generator-star-spacing" | "@stylistic/implicit-arrow-linebreak" | "@stylistic/indent" | "@stylistic/indent-binary-ops" | "@stylistic/jsx-child-element-spacing" | "@stylistic/jsx-closing-bracket-location" | "@stylistic/jsx-closing-tag-location" | "@stylistic/jsx-curly-brace-presence" | "@stylistic/jsx-curly-newline" | "@stylistic/jsx-curly-spacing" | "@stylistic/jsx-equals-spacing" | "@stylistic/jsx-first-prop-new-line" | "@stylistic/jsx-function-call-newline" | "@stylistic/jsx-indent" | "@stylistic/jsx-indent-props" | "@stylistic/jsx-max-props-per-line" | "@stylistic/jsx-newline" | "@stylistic/jsx-one-expression-per-line" | "@stylistic/jsx-pascal-case" | "@stylistic/jsx-props-no-multi-spaces" | "@stylistic/jsx-quotes" | "@stylistic/jsx-self-closing-comp" | "@stylistic/jsx-sort-props" | "@stylistic/jsx-tag-spacing" | "@stylistic/jsx-wrap-multilines" | "@stylistic/key-spacing" | "@stylistic/keyword-spacing" | "@stylistic/line-comment-position" | "@stylistic/linebreak-style" | "@stylistic/lines-around-comment" | "@stylistic/lines-between-class-members" | "@stylistic/max-len" | "@stylistic/max-statements-per-line" | "@stylistic/member-delimiter-style" | "@stylistic/multiline-comment-style" | "@stylistic/multiline-ternary" | "@stylistic/new-parens" | "@stylistic/newline-per-chained-call" | "@stylistic/no-confusing-arrow" | "@stylistic/no-extra-parens" | "@stylistic/no-extra-semi" | "@stylistic/no-floating-decimal" | "@stylistic/no-mixed-operators" | "@stylistic/no-mixed-spaces-and-tabs" | "@stylistic/no-multi-spaces" | "@stylistic/no-multiple-empty-lines" | "@stylistic/no-tabs" | "@stylistic/no-trailing-spaces" | "@stylistic/no-whitespace-before-property" | "@stylistic/nonblock-statement-body-position" | "@stylistic/object-curly-newline" | "@stylistic/object-curly-spacing" | "@stylistic/object-property-newline" | "@stylistic/one-var-declaration-per-line" | "@stylistic/operator-linebreak" | "@stylistic/padded-blocks" | "@stylistic/padding-line-between-statements" | "@stylistic/quote-props" | "@stylistic/quotes" | "@stylistic/rest-spread-spacing" | "@stylistic/semi" | "@stylistic/semi-spacing" | "@stylistic/semi-style" | "@stylistic/space-before-blocks" | "@stylistic/space-before-function-paren" | "@stylistic/space-in-parens" | "@stylistic/space-infix-ops" | "@stylistic/space-unary-ops" | "@stylistic/spaced-comment" | "@stylistic/switch-colon-spacing" | "@stylistic/template-curly-spacing" | "@stylistic/template-tag-spacing" | "@stylistic/type-annotation-spacing" | "@stylistic/type-generic-spacing" | "@stylistic/type-named-tuple-spacing" | "@stylistic/wrap-iife" | "@stylistic/wrap-regex" | "@stylistic/yield-star-spacing" | "toml/array-bracket-newline" | "toml/array-bracket-spacing" | "toml/array-element-newline" | "toml/comma-style" | "toml/indent" | "toml/inline-table-curly-spacing" | "toml/key-spacing" | "toml/keys-order" | "toml/no-mixed-type-in-array" | "toml/no-non-decimal-integer" | "toml/no-space-dots" | "toml/no-unreadable-number-separator" | "toml/padding-line-between-pairs" | "toml/padding-line-between-tables" | "toml/precision-of-fractional-seconds" | "toml/precision-of-integer" | "toml/quoted-keys" | "toml/space-eq-sign" | "toml/spaced-comment" | "toml/table-bracket-spacing" | "toml/tables-order" | "toml/vue-custom-block/no-parsing-error" | "tsdoc/syntax" | "@typescript-eslint/adjacent-overload-signatures" | "@typescript-eslint/array-type" | "@typescript-eslint/await-thenable" | "@typescript-eslint/ban-ts-comment" | "@typescript-eslint/ban-tslint-comment" | "@typescript-eslint/class-literal-property-style" | "@typescript-eslint/class-methods-use-this" | "@typescript-eslint/consistent-generic-constructors" | "@typescript-eslint/consistent-indexed-object-style" | "@typescript-eslint/consistent-return" | "@typescript-eslint/consistent-type-assertions" | "@typescript-eslint/consistent-type-definitions" | "@typescript-eslint/consistent-type-exports" | "@typescript-eslint/consistent-type-imports" | "@typescript-eslint/default-param-last" | "@typescript-eslint/dot-notation" | "@typescript-eslint/explicit-function-return-type" | "@typescript-eslint/explicit-member-accessibility" | "@typescript-eslint/explicit-module-boundary-types" | "@typescript-eslint/init-declarations" | "@typescript-eslint/max-params" | "@typescript-eslint/member-ordering" | "@typescript-eslint/method-signature-style" | "@typescript-eslint/naming-convention" | "@typescript-eslint/no-array-constructor" | "@typescript-eslint/no-array-delete" | "@typescript-eslint/no-base-to-string" | "@typescript-eslint/no-confusing-non-null-assertion" | "@typescript-eslint/no-confusing-void-expression" | "@typescript-eslint/no-deprecated" | "@typescript-eslint/no-dupe-class-members" | "@typescript-eslint/no-duplicate-enum-values" | "@typescript-eslint/no-duplicate-type-constituents" | "@typescript-eslint/no-dynamic-delete" | "@typescript-eslint/no-empty-function" | "@typescript-eslint/no-empty-interface" | "@typescript-eslint/no-empty-object-type" | "@typescript-eslint/no-explicit-any" | "@typescript-eslint/no-extra-non-null-assertion" | "@typescript-eslint/no-extraneous-class" | "@typescript-eslint/no-floating-promises" | "@typescript-eslint/no-for-in-array" | "@typescript-eslint/no-implied-eval" | "@typescript-eslint/no-import-type-side-effects" | "@typescript-eslint/no-inferrable-types" | "@typescript-eslint/no-invalid-this" | "@typescript-eslint/no-invalid-void-type" | "@typescript-eslint/no-loop-func" | "@typescript-eslint/no-loss-of-precision" | "@typescript-eslint/no-magic-numbers" | "@typescript-eslint/no-meaningless-void-operator" | "@typescript-eslint/no-misused-new" | "@typescript-eslint/no-misused-promises" | "@typescript-eslint/no-misused-spread" | "@typescript-eslint/no-mixed-enums" | "@typescript-eslint/no-namespace" | "@typescript-eslint/no-non-null-asserted-nullish-coalescing" | "@typescript-eslint/no-non-null-asserted-optional-chain" | "@typescript-eslint/no-non-null-assertion" | "@typescript-eslint/no-redeclare" | "@typescript-eslint/no-redundant-type-constituents" | "@typescript-eslint/no-require-imports" | "@typescript-eslint/no-restricted-imports" | "@typescript-eslint/no-restricted-types" | "@typescript-eslint/no-shadow" | "@typescript-eslint/no-this-alias" | "@typescript-eslint/no-type-alias" | "@typescript-eslint/no-unnecessary-boolean-literal-compare" | "@typescript-eslint/no-unnecessary-condition" | "@typescript-eslint/no-unnecessary-parameter-property-assignment" | "@typescript-eslint/no-unnecessary-qualifier" | "@typescript-eslint/no-unnecessary-template-expression" | "@typescript-eslint/no-unnecessary-type-arguments" | "@typescript-eslint/no-unnecessary-type-assertion" | "@typescript-eslint/no-unnecessary-type-constraint" | "@typescript-eslint/no-unnecessary-type-conversion" | "@typescript-eslint/no-unnecessary-type-parameters" | "@typescript-eslint/no-unsafe-argument" | "@typescript-eslint/no-unsafe-assignment" | "@typescript-eslint/no-unsafe-call" | "@typescript-eslint/no-unsafe-declaration-merging" | "@typescript-eslint/no-unsafe-enum-comparison" | "@typescript-eslint/no-unsafe-function-type" | "@typescript-eslint/no-unsafe-member-access" | "@typescript-eslint/no-unsafe-return" | "@typescript-eslint/no-unsafe-type-assertion" | "@typescript-eslint/no-unsafe-unary-minus" | "@typescript-eslint/no-unused-expressions" | "@typescript-eslint/no-unused-vars" | "@typescript-eslint/no-use-before-define" | "@typescript-eslint/no-useless-constructor" | "@typescript-eslint/no-useless-empty-export" | "@typescript-eslint/no-var-requires" | "@typescript-eslint/no-wrapper-object-types" | "@typescript-eslint/non-nullable-type-assertion-style" | "@typescript-eslint/only-throw-error" | "@typescript-eslint/parameter-properties" | "@typescript-eslint/prefer-as-const" | "@typescript-eslint/prefer-destructuring" | "@typescript-eslint/prefer-enum-initializers" | "@typescript-eslint/prefer-find" | "@typescript-eslint/prefer-for-of" | "@typescript-eslint/prefer-function-type" | "@typescript-eslint/prefer-includes" | "@typescript-eslint/prefer-literal-enum-member" | "@typescript-eslint/prefer-namespace-keyword" | "@typescript-eslint/prefer-nullish-coalescing" | "@typescript-eslint/prefer-optional-chain" | "@typescript-eslint/prefer-promise-reject-errors" | "@typescript-eslint/prefer-readonly" | "@typescript-eslint/prefer-readonly-parameter-types" | "@typescript-eslint/prefer-reduce-type-parameter" | "@typescript-eslint/prefer-regexp-exec" | "@typescript-eslint/prefer-return-this-type" | "@typescript-eslint/prefer-string-starts-ends-with" | "@typescript-eslint/prefer-ts-expect-error" | "@typescript-eslint/promise-function-async" | "@typescript-eslint/related-getter-setter-pairs" | "@typescript-eslint/require-array-sort-compare" | "@typescript-eslint/require-await" | "@typescript-eslint/restrict-plus-operands" | "@typescript-eslint/restrict-template-expressions" | "@typescript-eslint/return-await" | "@typescript-eslint/sort-type-constituents" | "@typescript-eslint/strict-boolean-expressions" | "@typescript-eslint/switch-exhaustiveness-check" | "@typescript-eslint/triple-slash-reference" | "@typescript-eslint/typedef" | "@typescript-eslint/unbound-method" | "@typescript-eslint/unified-signatures" | "@typescript-eslint/use-unknown-in-catch-callback-variable" | "unicorn/better-regex" | "unicorn/catch-error-name" | "unicorn/consistent-assert" | "unicorn/consistent-date-clone" | "unicorn/consistent-destructuring" | "unicorn/consistent-empty-array-spread" | "unicorn/consistent-existence-index-check" | "unicorn/consistent-function-scoping" | "unicorn/custom-error-definition" | "unicorn/empty-brace-spaces" | "unicorn/error-message" | "unicorn/escape-case" | "unicorn/expiring-todo-comments" | "unicorn/explicit-length-check" | "unicorn/filename-case" | "unicorn/import-style" | "unicorn/new-for-builtins" | "unicorn/no-abusive-eslint-disable" | "unicorn/no-accessor-recursion" | "unicorn/no-anonymous-default-export" | "unicorn/no-array-callback-reference" | "unicorn/no-array-for-each" | "unicorn/no-array-method-this-argument" | "unicorn/no-array-push-push" | "unicorn/no-array-reduce" | "unicorn/no-await-expression-member" | "unicorn/no-await-in-promise-methods" | "unicorn/no-console-spaces" | "unicorn/no-document-cookie" | "unicorn/no-empty-file" | "unicorn/no-for-loop" | "unicorn/no-hex-escape" | "unicorn/no-instanceof-array" | "unicorn/no-instanceof-builtins" | "unicorn/no-invalid-fetch-options" | "unicorn/no-invalid-remove-event-listener" | "unicorn/no-keyword-prefix" | "unicorn/no-length-as-slice-end" | "unicorn/no-lonely-if" | "unicorn/no-magic-array-flat-depth" | "unicorn/no-named-default" | "unicorn/no-negated-condition" | "unicorn/no-negation-in-equality-check" | "unicorn/no-nested-ternary" | "unicorn/no-new-array" | "unicorn/no-new-buffer" | "unicorn/no-null" | "unicorn/no-object-as-default-parameter" | "unicorn/no-process-exit" | "unicorn/no-single-promise-in-promise-methods" | "unicorn/no-static-only-class" | "unicorn/no-thenable" | "unicorn/no-this-assignment" | "unicorn/no-typeof-undefined" | "unicorn/no-unnecessary-array-flat-depth" | "unicorn/no-unnecessary-array-splice-count" | "unicorn/no-unnecessary-await" | "unicorn/no-unnecessary-polyfills" | "unicorn/no-unnecessary-slice-end" | "unicorn/no-unreadable-array-destructuring" | "unicorn/no-unreadable-iife" | "unicorn/no-unused-properties" | "unicorn/no-useless-fallback-in-spread" | "unicorn/no-useless-length-check" | "unicorn/no-useless-promise-resolve-reject" | "unicorn/no-useless-spread" | "unicorn/no-useless-switch-case" | "unicorn/no-useless-undefined" | "unicorn/no-zero-fractions" | "unicorn/number-literal-case" | "unicorn/numeric-separators-style" | "unicorn/prefer-add-event-listener" | "unicorn/prefer-array-find" | "unicorn/prefer-array-flat" | "unicorn/prefer-array-flat-map" | "unicorn/prefer-array-index-of" | "unicorn/prefer-array-some" | "unicorn/prefer-at" | "unicorn/prefer-blob-reading-methods" | "unicorn/prefer-code-point" | "unicorn/prefer-date-now" | "unicorn/prefer-default-parameters" | "unicorn/prefer-dom-node-append" | "unicorn/prefer-dom-node-dataset" | "unicorn/prefer-dom-node-remove" | "unicorn/prefer-dom-node-text-content" | "unicorn/prefer-event-target" | "unicorn/prefer-export-from" | "unicorn/prefer-global-this" | "unicorn/prefer-import-meta-properties" | "unicorn/prefer-includes" | "unicorn/prefer-json-parse-buffer" | "unicorn/prefer-keyboard-event-key" | "unicorn/prefer-logical-operator-over-ternary" | "unicorn/prefer-math-min-max" | "unicorn/prefer-math-trunc" | "unicorn/prefer-modern-dom-apis" | "unicorn/prefer-modern-math-apis" | "unicorn/prefer-module" | "unicorn/prefer-native-coercion-functions" | "unicorn/prefer-negative-index" | "unicorn/prefer-node-protocol" | "unicorn/prefer-number-properties" | "unicorn/prefer-object-from-entries" | "unicorn/prefer-optional-catch-binding" | "unicorn/prefer-prototype-methods" | "unicorn/prefer-query-selector" | "unicorn/prefer-reflect-apply" | "unicorn/prefer-regexp-test" | "unicorn/prefer-set-has" | "unicorn/prefer-set-size" | "unicorn/prefer-single-call" | "unicorn/prefer-spread" | "unicorn/prefer-string-raw" | "unicorn/prefer-string-replace-all" | "unicorn/prefer-string-slice" | "unicorn/prefer-string-starts-ends-with" | "unicorn/prefer-string-trim-start-end" | "unicorn/prefer-structured-clone" | "unicorn/prefer-switch" | "unicorn/prefer-ternary" | "unicorn/prefer-top-level-await" | "unicorn/prefer-type-error" | "unicorn/prevent-abbreviations" | "unicorn/relative-url-style" | "unicorn/require-array-join-separator" | "unicorn/require-number-to-fixed-digits-argument" | "unicorn/require-post-message-target-origin" | "unicorn/string-content" | "unicorn/switch-case-braces" | "unicorn/template-indent" | "unicorn/text-encoding-identifier-case" | "unicorn/throw-new-error" | "vitest/consistent-test-filename" | "vitest/consistent-test-it" | "vitest/expect-expect" | "vitest/max-expects" | "vitest/max-nested-describe" | "vitest/no-alias-methods" | "vitest/no-commented-out-tests" | "vitest/no-conditional-expect" | "vitest/no-conditional-in-test" | "vitest/no-conditional-tests" | "vitest/no-disabled-tests" | "vitest/no-done-callback" | "vitest/no-duplicate-hooks" | "vitest/no-focused-tests" | "vitest/no-hooks" | "vitest/no-identical-title" | "vitest/no-import-node-test" | "vitest/no-interpolation-in-snapshots" | "vitest/no-large-snapshots" | "vitest/no-mocks-import" | "vitest/no-restricted-matchers" | "vitest/no-restricted-vi-methods" | "vitest/no-standalone-expect" | "vitest/no-test-prefixes" | "vitest/no-test-return-statement" | "vitest/padding-around-after-all-blocks" | "vitest/padding-around-after-each-blocks" | "vitest/padding-around-all" | "vitest/padding-around-before-all-blocks" | "vitest/padding-around-before-each-blocks" | "vitest/padding-around-describe-blocks" | "vitest/padding-around-expect-groups" | "vitest/padding-around-test-blocks" | "vitest/prefer-called-with" | "vitest/prefer-comparison-matcher" | "vitest/prefer-describe-function-title" | "vitest/prefer-each" | "vitest/prefer-equality-matcher" | "vitest/prefer-expect-assertions" | "vitest/prefer-expect-resolves" | "vitest/prefer-hooks-in-order" | "vitest/prefer-hooks-on-top" | "vitest/prefer-lowercase-title" | "vitest/prefer-mock-promise-shorthand" | "vitest/prefer-snapshot-hint" | "vitest/prefer-spy-on" | "vitest/prefer-strict-boolean-matchers" | "vitest/prefer-strict-equal" | "vitest/prefer-to-be" | "vitest/prefer-to-be-falsy" | "vitest/prefer-to-be-object" | "vitest/prefer-to-be-truthy" | "vitest/prefer-to-contain" | "vitest/prefer-to-have-length" | "vitest/prefer-todo" | "vitest/prefer-vi-mocked" | "vitest/require-hook" | "vitest/require-local-test-context-for-concurrent-snapshots" | "vitest/require-mock-type-parameters" | "vitest/require-to-throw-message" | "vitest/require-top-level-describe" | "vitest/valid-describe-callback" | "vitest/valid-expect" | "vitest/valid-expect-in-promise" | "vitest/valid-title" | "yaml/block-mapping" | "yaml/block-mapping-colon-indicator-newline" | "yaml/block-mapping-question-indicator-newline" | "yaml/block-sequence" | "yaml/block-sequence-hyphen-indicator-newline" | "yaml/file-extension" | "yaml/flow-mapping-curly-newline" | "yaml/flow-mapping-curly-spacing" | "yaml/flow-sequence-bracket-newline" | "yaml/flow-sequence-bracket-spacing" | "yaml/indent" | "yaml/key-name-casing" | "yaml/key-spacing" | "yaml/no-empty-document" | "yaml/no-empty-key" | "yaml/no-empty-mapping-value" | "yaml/no-empty-sequence-entry" | "yaml/no-irregular-whitespace" | "yaml/no-multiple-empty-lines" | "yaml/no-tab-indent" | "yaml/no-trailing-zeros" | "yaml/plain-scalar" | "yaml/quotes" | "yaml/require-string-key" | "yaml/sort-keys" | "yaml/sort-sequence-values" | "yaml/spaced-comment" | "yaml/vue-custom-block/no-parsing-error")[];
|
|
2
2
|
export { FIXABLE_RULES_MAP } from "./generated/fixable-rules-map.js";
|
|
@@ -93,7 +93,7 @@ export const FIXABLE_RULES_MAP = {
|
|
|
93
93
|
"jsonc/space-unary-ops",
|
|
94
94
|
"jsonc/valid-json-number",
|
|
95
95
|
],
|
|
96
|
-
markdown: [],
|
|
96
|
+
markdown: ["markdown/no-missing-atx-heading-space"],
|
|
97
97
|
n: [
|
|
98
98
|
"n/exports-style",
|
|
99
99
|
"n/file-extension-in-import",
|
|
@@ -124,6 +124,13 @@ export const FIXABLE_RULES_MAP = {
|
|
|
124
124
|
"perfectionist/sort-union-types",
|
|
125
125
|
"perfectionist/sort-variable-declarations",
|
|
126
126
|
],
|
|
127
|
+
pnpm: [
|
|
128
|
+
"pnpm/json-enforce-catalog",
|
|
129
|
+
"pnpm/json-prefer-workspace-settings",
|
|
130
|
+
"pnpm/json-valid-catalog",
|
|
131
|
+
"pnpm/yaml-no-duplicate-catalog-item",
|
|
132
|
+
"pnpm/yaml-no-unused-catalog-item",
|
|
133
|
+
],
|
|
127
134
|
react: [
|
|
128
135
|
"react/destructuring-assignment",
|
|
129
136
|
"react/function-component-definition",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.4.
|
|
1
|
+
export declare const VERSION = "0.4.1";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.4.
|
|
1
|
+
export const VERSION = "0.4.1";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pluginReactRefresh from "eslint-plugin-react-refresh";
|
|
2
|
-
export { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
2
|
+
export { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginPnpm, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
3
3
|
/**
|
|
4
4
|
* The main `plugins.ts` does not export these plugins, but
|
|
5
5
|
* exports functions that dynamically import them, so
|
package/dist/esm/plugins-all.js
CHANGED
|
@@ -12,8 +12,8 @@ import pluginReact from "eslint-plugin-react";
|
|
|
12
12
|
import pluginReactHooks from "eslint-plugin-react-hooks";
|
|
13
13
|
import * as pluginReactRefresh from "eslint-plugin-react-refresh";
|
|
14
14
|
import pluginTsdoc from "eslint-plugin-tsdoc";
|
|
15
|
-
import { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
16
|
-
export { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
15
|
+
import { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginPnpm, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
16
|
+
export { pluginAntfu, pluginDeMorgan, pluginEslintComments, pluginImport, pluginN, pluginPerfectionist, pluginPnpm, pluginUnicorn, pluginUnusedImports, } from "./plugins.js";
|
|
17
17
|
/**
|
|
18
18
|
* The main `plugins.ts` does not export these plugins, but
|
|
19
19
|
* exports functions that dynamically import them, so
|
|
@@ -76,6 +76,10 @@ export const plugindex = {
|
|
|
76
76
|
plugin: pluginPerfectionist,
|
|
77
77
|
prefix: "perfectionist/",
|
|
78
78
|
},
|
|
79
|
+
pnpm: {
|
|
80
|
+
plugin: pluginPnpm,
|
|
81
|
+
prefix: "pnpm/",
|
|
82
|
+
},
|
|
79
83
|
react: {
|
|
80
84
|
plugin: pluginReact,
|
|
81
85
|
prefix: "react/",
|
package/dist/esm/plugins.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as pluginDeMorgan } from "eslint-plugin-de-morgan";
|
|
|
7
7
|
export * as pluginImport from "eslint-plugin-import-x";
|
|
8
8
|
export { default as pluginN } from "eslint-plugin-n";
|
|
9
9
|
export { default as pluginPerfectionist } from "eslint-plugin-perfectionist";
|
|
10
|
+
export { default as pluginPnpm } from "eslint-plugin-pnpm";
|
|
10
11
|
export { default as pluginUnicorn } from "eslint-plugin-unicorn";
|
|
11
12
|
export { default as pluginUnusedImports } from "eslint-plugin-unused-imports";
|
|
12
13
|
export declare function importPluginUnicorn(): Promise<{
|
|
@@ -1567,9 +1568,3 @@ export declare function importPluginStylistic(): Promise<{
|
|
|
1567
1568
|
configs: import("eslint").ESLint.Plugin["configs"] & import("@stylistic/eslint-plugin").Configs;
|
|
1568
1569
|
};
|
|
1569
1570
|
}>;
|
|
1570
|
-
export declare function importPluginTailwind(): Promise<{
|
|
1571
|
-
pluginTailwind: any;
|
|
1572
|
-
}>;
|
|
1573
|
-
export declare function safeImportPluginTailwind(): Promise<import("neverthrow").Ok<{
|
|
1574
|
-
pluginTailwind: any;
|
|
1575
|
-
}, never> | import("neverthrow").Err<never, Error>>;
|