This commit is contained in:
Alex
2023-11-13 18:23:25 -05:00
parent 60b1b8fde3
commit a022050ab4
9 changed files with 518 additions and 408 deletions

2
dist/index.d.ts vendored
View File

@ -20,6 +20,8 @@ export interface LocalRuleOptions {
"rules/restrict-template-expressions": RuleEntry<{
allow: string[];
}>;
/** Ban assignment of empty object literals `{}` and replace them with `Object.create(null)` */
"rules/no-empty-object-literal": RuleEntry<unknown>;
}
export type RuleOptions = Rules & Partial<LocalRuleOptions>;
/**

8
dist/package.json vendored
View File

@ -9,10 +9,10 @@
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"@types/eslint": "^8.44.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@typescript-eslint/type-utils": "^6.10.0",
"@typescript-eslint/utils": "^6.10.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@typescript-eslint/type-utils": "^6.11.0",
"@typescript-eslint/utils": "^6.11.0",
"aria-query": "^5.3.0",
"axe-core": "4.8.2",
"axobject-query": "^4.0.0",