Update
This commit is contained in:
16
dist/package.json
vendored
16
dist/package.json
vendored
@ -1,18 +1,18 @@
|
||||
{
|
||||
"name": "@aet/eslint-rules",
|
||||
"version": "0.0.21",
|
||||
"version": "0.0.23",
|
||||
"license": "UNLICENSED",
|
||||
"peerDependencies": {
|
||||
"eslint": "^9.0.0",
|
||||
"eslint": "^8.57.0",
|
||||
"typescript": "^5.4.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@eslint-community/eslint-utils": "^4.4.0",
|
||||
"@types/eslint": "^8.56.7",
|
||||
"@typescript-eslint/eslint-plugin": "^7.5.0",
|
||||
"@typescript-eslint/parser": "^7.5.0",
|
||||
"@typescript-eslint/type-utils": "^7.5.0",
|
||||
"@typescript-eslint/utils": "^7.5.0",
|
||||
"@types/eslint": "^8.56.9",
|
||||
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
||||
"@typescript-eslint/parser": "^7.7.0",
|
||||
"@typescript-eslint/type-utils": "^7.7.0",
|
||||
"@typescript-eslint/utils": "^7.7.0",
|
||||
"aria-query": "^5.3.0",
|
||||
"axe-core": "^4.9.0",
|
||||
"axobject-query": "^4.0.0",
|
||||
@ -55,4 +55,4 @@
|
||||
"supports-preserve-symlinks-flag": "file:./overrides/supports-preserve-symlinks-flag"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
13
dist/prettier.d.ts
vendored
Normal file
13
dist/prettier.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// Generated by dts-bundle-generator v9.3.1
|
||||
|
||||
import { Config } from 'prettier';
|
||||
|
||||
declare function defineConfig({ tailwind, ...config }: Partial<Config> & {
|
||||
tailwind?: boolean;
|
||||
}): Config;
|
||||
|
||||
export {
|
||||
defineConfig as default,
|
||||
};
|
||||
|
||||
export {};
|
22
dist/types.d.ts
vendored
Normal file
22
dist/types.d.ts
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
// Generated by dts-bundle-generator v9.3.1
|
||||
|
||||
import { ESLintUtils } from '@typescript-eslint/utils';
|
||||
import { Rule } from 'eslint';
|
||||
|
||||
export declare function defineRules(rules: {
|
||||
[ruleName: string]: Rule.RuleModule | ESLintUtils.RuleModule<string, unknown[]>;
|
||||
}): {
|
||||
[ruleName: string]:
|
||||
| Rule.RuleModule
|
||||
| ESLintUtils.RuleModule<string, unknown[], ESLintUtils.RuleListener>;
|
||||
};
|
||||
export declare function defineRule({
|
||||
name,
|
||||
create,
|
||||
...meta
|
||||
}: Rule.RuleMetaData & {
|
||||
name?: string;
|
||||
create: (context: Rule.RuleContext) => Rule.RuleListener;
|
||||
}): Rule.RuleModule;
|
||||
|
||||
export {};
|
Reference in New Issue
Block a user