Update
This commit is contained in:
13
dist/config/index.d.ts
vendored
13
dist/config/index.d.ts
vendored
@ -7,6 +7,16 @@ export type Middleware =
|
||||
| (() => Promise<MiddlewareResult>)
|
||||
| (() => Promise<{ default: MiddlewareResult }>);
|
||||
|
||||
export type Environment =
|
||||
| 'react'
|
||||
| 'reactRefresh'
|
||||
| 'tailwind'
|
||||
| 'storybook'
|
||||
| 'reactQuery'
|
||||
| 'testingLibrary'
|
||||
| 'jsdoc'
|
||||
| 'vitest';
|
||||
|
||||
export interface NormalizedExtendConfigOptions {
|
||||
auto?: boolean;
|
||||
middlewares?: Middleware[];
|
||||
@ -15,6 +25,9 @@ export interface NormalizedExtendConfigOptions {
|
||||
* Use `.gitignore` file to exclude files from ESLint.
|
||||
*/
|
||||
gitignore?: boolean;
|
||||
env?: {
|
||||
[key in Environment]?: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
export type ExtendConfigOptions =
|
||||
|
32
dist/package.json
vendored
32
dist/package.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@aet/eslint-rules",
|
||||
"version": "2.0.26",
|
||||
"version": "2.0.29",
|
||||
"license": "UNLICENSED",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
@ -23,18 +23,18 @@
|
||||
"@tanstack/eslint-plugin-query": "^5.62.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@aet/eslint-define-config": "^0.1.3",
|
||||
"@antfu/install-pkg": "^0.5.0",
|
||||
"@aet/eslint-define-config": "^0.1.5",
|
||||
"@antfu/install-pkg": "^1.0.0",
|
||||
"@eslint-community/eslint-utils": "^4.4.1",
|
||||
"@eslint-react/eslint-plugin": "1.22.1",
|
||||
"@eslint/js": "^9.17.0",
|
||||
"@eslint-react/eslint-plugin": "1.24.1",
|
||||
"@eslint/js": "^9.19.0",
|
||||
"@nolyfill/is-core-module": "^1.0.39",
|
||||
"@stylistic/eslint-plugin": "^2.12.1",
|
||||
"@stylistic/eslint-plugin": "^3.0.0",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
||||
"@typescript-eslint/parser": "^8.18.2",
|
||||
"@typescript-eslint/type-utils": "^8.18.2",
|
||||
"@typescript-eslint/utils": "^8.18.2",
|
||||
"@typescript-eslint/eslint-plugin": "^8.21.0",
|
||||
"@typescript-eslint/parser": "^8.21.0",
|
||||
"@typescript-eslint/type-utils": "^8.21.0",
|
||||
"@typescript-eslint/utils": "^8.21.0",
|
||||
"aria-query": "^5.3.2",
|
||||
"axe-core": "^4.10.2",
|
||||
"axobject-query": "4.1.0",
|
||||
@ -43,7 +43,7 @@
|
||||
"doctrine": "^3.0.0",
|
||||
"emoji-regex": "^10.4.0",
|
||||
"enhanced-resolve": "^5.18.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-config-prettier": "^10.0.1",
|
||||
"eslint-import-resolver-node": "^0.3.9",
|
||||
"eslint-import-resolver-typescript": "^3.7.0",
|
||||
"eslint-module-utils": "^2.12.0",
|
||||
@ -52,17 +52,17 @@
|
||||
"esprima": "^4.0.1",
|
||||
"esquery": "^1.6.0",
|
||||
"estraverse": "^5.3.0",
|
||||
"fast-glob": "^3.3.2",
|
||||
"get-tsconfig": "^4.8.1",
|
||||
"fast-glob": "^3.3.3",
|
||||
"get-tsconfig": "^4.10.0",
|
||||
"globals": "^15.14.0",
|
||||
"ignore": "^7.0.0",
|
||||
"ignore": "^7.0.3",
|
||||
"is-bun-module": "^1.3.0",
|
||||
"is-glob": "^4.0.3",
|
||||
"language-tags": "^2.0.1",
|
||||
"lodash-es": "^4.17.21",
|
||||
"minimatch": "^10.0.1",
|
||||
"semver": "^7.6.3",
|
||||
"typescript-eslint": "^8.18.2"
|
||||
"typescript-eslint": "^8.21.0"
|
||||
},
|
||||
"pnpm": {
|
||||
"overrides": {
|
||||
@ -78,4 +78,4 @@
|
||||
"**/is-core-module": "file:./overrides/is-core-module",
|
||||
"**/supports-preserve-symlinks-flag": "file:./overrides/supports-preserve-symlinks-flag"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user