-
Notifications
You must be signed in to change notification settings - Fork 31
feat: Disable inline style prop for components
#3213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+390
−12
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
396c05f
first test run
LinKCoding 70178f6
fixing some linting errors
LinKCoding 76ab427
add more ignore comments
LinKCoding 3ff81a4
implement rule in eslint-gamut-plugin and removed external package
LinKCoding f391205
more comments
LinKCoding fadf55c
formatted
LinKCoding 49faf3e
yarn'd
LinKCoding 4c3352d
revert yarn.lock
LinKCoding eaab633
trying alpha again
LinKCoding d2537cd
add ESLint page to docs
LinKCoding bee36da
formatted
LinKCoding 0622509
updated examples in ESLint rules
LinKCoding 33f84dc
applied Cass's feedback
LinKCoding 95f3c4e
slight update to error message
LinKCoding File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,72 @@ | ||
| import { ESLintUtils } from '@typescript-eslint/utils'; | ||
|
|
||
| import rule from './no-inline-style'; | ||
|
|
||
| const ruleTester = new ESLintUtils.RuleTester({ | ||
| parser: '@typescript-eslint/parser', | ||
| parserOptions: { | ||
| ecmaFeatures: { | ||
| jsx: true, | ||
| }, | ||
| }, | ||
| }); | ||
|
|
||
| ruleTester.run('no-inline-style', rule, { | ||
| valid: [ | ||
| `<div />`, | ||
| `<div className="foo" />`, | ||
| `<Component className="bar" />`, | ||
| `<div styles={styles} />`, | ||
| `<Component styleSheet={sheet} />`, | ||
| `const style = { padding: 0 };`, | ||
| ], | ||
| invalid: [ | ||
| { | ||
| code: `<div style={{ padding: 0 }} />`, | ||
| errors: [ | ||
| { | ||
| messageId: 'noInlineStyle', | ||
| }, | ||
| ], | ||
| }, | ||
| { | ||
| code: `<Component style={{ margin: '10px' }} />`, | ||
| errors: [ | ||
| { | ||
| messageId: 'noInlineStyle', | ||
| }, | ||
| ], | ||
| }, | ||
| { | ||
| code: `<button style={styles.button} />`, | ||
| errors: [ | ||
| { | ||
| messageId: 'noInlineStyle', | ||
| }, | ||
| ], | ||
| }, | ||
| { | ||
| code: `<div className="foo" style={{ color: 'red' }} />`, | ||
| errors: [ | ||
| { | ||
| messageId: 'noInlineStyle', | ||
| }, | ||
| ], | ||
| }, | ||
| { | ||
| code: ` | ||
| <Component | ||
| style={{ | ||
| padding: 0, | ||
| margin: 0, | ||
| }} | ||
| /> | ||
| `, | ||
| errors: [ | ||
| { | ||
| messageId: 'noInlineStyle', | ||
| }, | ||
| ], | ||
| }, | ||
| ], | ||
| }); | ||
This file contains hidden or 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,30 @@ | ||
| import { createRule } from './createRule'; | ||
|
|
||
| export default createRule({ | ||
| create(context) { | ||
| return { | ||
| JSXAttribute(node) { | ||
| if (node.name.type === 'JSXIdentifier' && node.name.name === 'style') { | ||
| context.report({ | ||
| messageId: 'noInlineStyle', | ||
| node, | ||
| }); | ||
| } | ||
| }, | ||
| }; | ||
| }, | ||
| defaultOptions: [], | ||
| meta: { | ||
| docs: { | ||
| description: 'Disallow inline style props on JSX elements.', | ||
| recommended: 'error', | ||
| }, | ||
| messages: { | ||
| noInlineStyle: | ||
| 'The use of inline styles is discouraged — consider using styled components, design system utilities, or CSS classes instead.', | ||
| }, | ||
| type: 'suggestion', | ||
| schema: [], | ||
| }, | ||
| name: 'no-inline-style', | ||
| }); |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
love love love these