-
Notifications
You must be signed in to change notification settings - Fork 9
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
Adds a no-system-props rule #12
Changes from 10 commits
af4935f
fbc35d2
1765eb9
9f9298b
557e6f2
f35e97a
a6db9d6
4a852ec
b49b8d4
df26962
b1cc317
0555c31
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'eslint-plugin-primer-react': minor | ||
--- | ||
|
||
Added a no-system-props rule |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,38 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Disallow use of style system props (no-system-colors) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
🔧 The `--fix` option on the [ESLint CLI](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
System props are deprecated in Primer components (excluding utility components). | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we also mention that the |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
## Rule details | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This rule disallows use of any styled system prop on a Primer component. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
\*The two non-deprecated utility components (`Box` and `Text`) are allowed to use system props. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
👎 Examples of **incorrect** code for this rule: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```jsx | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/* eslint primer-react/no-system-props: "error" */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import {Button} from '@primer/components' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Button width={200} /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Button width={200} sx={{height: 300}} /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
👍 Examples of **correct** code for this rule: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
```jsx | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/* eslint primer-react/no-system-props: "error" */ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import {Box, Button, ProgressBar} from '@primer/components' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import {Avatar} from 'some-other-library' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Button sx={{width: 200}} />, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Button someOtherProp="foo" />, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ProgressBar bg="howdy" /> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Box width={200} />, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Avatar width={200} />, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A couple of notes here:
Suggested change
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
const rule = require('../no-system-props') | ||
const {RuleTester} = require('eslint') | ||
|
||
const ruleTester = new RuleTester({ | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
ecmaFeatures: { | ||
jsx: true | ||
} | ||
} | ||
}) | ||
|
||
ruleTester.run('no-system-props', rule, { | ||
valid: [ | ||
`import {Button} from '@primer/components'; <Button sx={{width: 200}} />`, | ||
`import {Button} from 'coles-cool-design-system'; <Button width={200} />`, | ||
`import {Button} from '@primer/components'; <Button someOtherProp="foo" />`, | ||
`import {Box} from '@primer/components'; <Box width={200} />`, | ||
`import {ProgressBar} from '@primer/components'; <ProgressBar bg="howdy" />`, | ||
`import {Button} from '@primer/components'; <Button {...someExpression()} />` | ||
], | ||
invalid: [ | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: 200}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width="200" />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: "200"}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={"200"} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: "200"}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={myWidth} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: myWidth}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} height={100} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: 200, height: 100}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width, height', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} sx={{height: 200}} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{height: 200, width: 200}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} sx={{width: 300}} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{width: 300}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} sx={myStylez} />`, | ||
output: `import {Button} from '@primer/components'; <Button width={200} sx={myStylez} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Button} from '@primer/components'; <Button width={200} sx={{...partialStyles, width: 100}} />`, | ||
output: `import {Button} from '@primer/components'; <Button sx={{...partialStyles, width: 100}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Button'} | ||
} | ||
] | ||
}, | ||
{ | ||
code: `import {Label} from '@primer/components'; <Label width={200} outline />`, | ||
output: `import {Label} from '@primer/components'; <Label outline sx={{width: 200}} />`, | ||
errors: [ | ||
{ | ||
messageId: 'noSystemProps', | ||
data: {propNames: 'width', componentName: 'Label'} | ||
} | ||
] | ||
} | ||
] | ||
}) |
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.