Skip to content

ericmatthys/eslint-plugin-jsx-grouped-sort-props

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Grouped sorting of JSX props (jsx-grouped-sort-props)

Specify a specific order of props or use named groups with loose ordering within each group.

Rule Details

This rule checks all JSX components and verifies that all props are sorted correctly.

Rule Options

...
"jsx-grouped-sort-props/jsx-grouped-sort-props": [<enabled>, [
  { group: "reserved" },
  "foo",
  "bar",
  { group: "html" },
  { group: "aria" },
  { group: "data" },
  { group: "other" },
  { group: "callback" }
]]
...

reserved

All reserved props, as listed in the React docs.

<Button key="1" ref="button" />

html

All props that map to supported html attributes, as listed in the React docs.

<Button className="goodbye" />

aria

All aria-* attributes. If not specified, aria-* attributes will be considered part of the html group.

<Button aria-label="Submit" />

data

All custom data-* attributes. If not specified, data-* attributes will be considered part of the html group.

<Button data-id="submit" />

callback

All props that match the pattern onCallback.

<Button onClick={onClick} />

other

All props that do not match a different group.

<Button isLoading={true} />

When not to use

This rule is a formatting preference and not following it won't negatively affect the quality of your code. If prop sort order isn't a part of your coding standards, then you can leave this rule off.

About

Grouped sorting of JSX props for ESLint

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published