-
Notifications
You must be signed in to change notification settings - Fork 692
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(eslint-plugin):formatting for all rules and on patch
- Loading branch information
1 parent
93bc349
commit c7ce5b0
Showing
61 changed files
with
566 additions
and
492 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
7 changes: 1 addition & 6 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-border-inline-block-longhand.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,12 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
[ | ||
"border-inline-start", | ||
"border-inline-end", | ||
"border-block-start", | ||
"border-block-end", | ||
], | ||
["border-inline-start", "border-inline-end", "border-block-start", "border-block-end"], | ||
39.351851851851855, | ||
"https://www.caniemail.com/features/css-border-inline-block-longhand/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-color-scheme.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStyleValueKeywordRule } from "../../utils/create-no-style-value-keyword-rule"; | ||
|
||
export default createNoStyleValueKeywordRule( | ||
"color-scheme", | ||
20.3125, | ||
"https://www.caniemail.com/features/css-color-scheme/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-font-stretch.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
"font-stretch", | ||
50, | ||
"https://www.caniemail.com/features/css-font-stretch/", | ||
); |
7 changes: 1 addition & 6 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-grid-template.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,12 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
[ | ||
"grid-template", | ||
"grid-template-areas", | ||
"grid-template-columns", | ||
"grid-template-rows", | ||
], | ||
["grid-template", "grid-template-areas", "grid-template-columns", "grid-template-rows"], | ||
37.765957446808514, | ||
"https://www.caniemail.com/features/css-grid-template/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-text-decoration-line.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
"text-decoration-line", | ||
52.77777777777778, | ||
"https://www.caniemail.com/features/css-text-decoration-line/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-text-decoration-skip-ink.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStyleValueKeywordRule } from "../../utils/create-no-style-value-keyword-rule"; | ||
|
||
export default createNoStyleValueKeywordRule( | ||
"text-decoration-skip-ink", | ||
31.73076923076923, | ||
"https://www.caniemail.com/features/css-text-decoration-skip-ink/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-text-decoration-style.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
"text-decoration-style", | ||
52.77777777777778, | ||
"https://www.caniemail.com/features/css-text-decoration-style/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-text-orientation.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
"text-orientation", | ||
46.03174603174603, | ||
"https://www.caniemail.com/features/css-text-orientation/", | ||
); |
7 changes: 7 additions & 0 deletions
7
packages/eslint-plugin/src/rules/generated/no-css-text-underline-position.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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { createNoStylePropertyRule } from "../../utils/create-no-style-property-rule"; | ||
|
||
export default createNoStylePropertyRule( | ||
"text-underline-position", | ||
32.95454545454545, | ||
"https://www.caniemail.com/features/css-text-underline-position/", | ||
); |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ export default createNoHTMLElementRule( | |
"abbr", | ||
56.875, | ||
"https://www.caniemail.com/features/html-abbr/", | ||
); | ||
) |
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
4 changes: 2 additions & 2 deletions
4
packages/eslint-plugin/src/rules/generated/no-html-aria-describedby.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,7 +1,7 @@ | ||
import { createNoHTMLAttributeRule } from "../../utils/create-no-html-attribute-rule"; | ||
|
||
export default createNoHTMLAttributeRule( | ||
"aria-describedby", | ||
"aria-describedby" , | ||
41.30434782608695, | ||
"https://www.caniemail.com/features/html-aria-describedby/", | ||
); | ||
) |
4 changes: 2 additions & 2 deletions
4
packages/eslint-plugin/src/rules/generated/no-html-aria-hidden.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,7 +1,7 @@ | ||
import { createNoHTMLAttributeRule } from "../../utils/create-no-html-attribute-rule"; | ||
|
||
export default createNoHTMLAttributeRule( | ||
"aria-hidden", | ||
"aria-hidden" , | ||
67.3913043478261, | ||
"https://www.caniemail.com/features/html-aria-hidden/", | ||
); | ||
) |
4 changes: 2 additions & 2 deletions
4
packages/eslint-plugin/src/rules/generated/no-html-aria-label.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,7 +1,7 @@ | ||
import { createNoHTMLAttributeRule } from "../../utils/create-no-html-attribute-rule"; | ||
|
||
export default createNoHTMLAttributeRule( | ||
"aria-label", | ||
"aria-label" , | ||
67.3913043478261, | ||
"https://www.caniemail.com/features/html-aria-label/", | ||
); | ||
) |
4 changes: 2 additions & 2 deletions
4
packages/eslint-plugin/src/rules/generated/no-html-aria-labelledby.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,7 +1,7 @@ | ||
import { createNoHTMLAttributeRule } from "../../utils/create-no-html-attribute-rule"; | ||
|
||
export default createNoHTMLAttributeRule( | ||
"aria-labelledby", | ||
"aria-labelledby" , | ||
46, | ||
"https://www.caniemail.com/features/html-aria-labelledby/", | ||
); | ||
) |
4 changes: 2 additions & 2 deletions
4
packages/eslint-plugin/src/rules/generated/no-html-aria-live.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,7 +1,7 @@ | ||
import { createNoHTMLAttributeRule } from "../../utils/create-no-html-attribute-rule"; | ||
|
||
export default createNoHTMLAttributeRule( | ||
"aria-live", | ||
"aria-live" , | ||
55.434782608695656, | ||
"https://www.caniemail.com/features/html-aria-live/", | ||
); | ||
) |
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
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
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
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ export default createNoHTMLElementRule( | |
"dfn", | ||
64.375, | ||
"https://www.caniemail.com/features/html-dfn/", | ||
); | ||
) |
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
Oops, something went wrong.