-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into user/harshmodi/FieldLintRule
- Loading branch information
Showing
119 changed files
with
1,424 additions
and
1,824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _exports: import("eslint").Rule.RuleModule; | ||
export = _exports; | ||
import { TSESTree } from "@typescript-eslint/utils"; | ||
declare const rule: import("@typescript-eslint/utils/dist/ts-eslint").RuleModule<"missingAriaLabel", [], { | ||
JSXElement(node: TSESTree.JSXElement): void; | ||
}>; | ||
export default rule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _exports: import("eslint").Rule.RuleModule; | ||
export = _exports; | ||
import { TSESTree } from "@typescript-eslint/utils"; | ||
declare const rule: import("@typescript-eslint/utils/dist/ts-eslint").RuleModule<"accordionItemOneHeaderOnePanel", [], { | ||
JSXOpeningElement(node: TSESTree.JSXOpeningElement): void; | ||
}>; | ||
export default rule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,5 @@ | ||
export namespace meta { | ||
namespace messages { | ||
let missingAriaLabel: string; | ||
} | ||
let type: string; | ||
namespace docs { | ||
let description: string; | ||
let recommended: boolean; | ||
let url: string; | ||
} | ||
let schema: never[]; | ||
} | ||
export function create(context: any): { | ||
JSXOpeningElement(node: any): void; | ||
}; | ||
import { TSESTree } from "@typescript-eslint/utils"; | ||
declare const rule: import("@typescript-eslint/utils/dist/ts-eslint").RuleModule<"missingAriaLabel", [], { | ||
JSXOpeningElement(node: TSESTree.JSXOpeningElement): void; | ||
}>; | ||
export default rule; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
dist/lib/rules/avoid-using-aria-describedby-for-primary-labelling.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
declare const _exports: import("eslint").Rule.RuleModule; | ||
export = _exports; | ||
import { TSESTree } from "@typescript-eslint/utils"; | ||
declare const rule: import("@typescript-eslint/utils/dist/ts-eslint").RuleModule<"noAriaDescribedbyAsLabel", [], { | ||
JSXElement(node: TSESTree.JSXElement): void; | ||
}>; | ||
export default rule; |
Oops, something went wrong.