Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upRequire PascalCase for user-defined JSX components (react/jsx-pascal-case) #1365
Comments
feross
added
enhancement
accepted
labels
Aug 15, 2019
feross
added this to the standard 14 milestone
Aug 15, 2019
feross
closed this
in
d3d14a5
Aug 15, 2019
This comment has been minimized.
This comment has been minimized.
|
Shipping in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
feross commentedAug 15, 2019
•
edited
Enforces coding style that user-defined JSX components are defined and referenced in PascalCase.
https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-pascal-case.md
The following patterns are considered warnings:
<Test_component /><TEST_COMPONENT />The following patterns are not considered warnings:
<div /><TestComponent /><CSSTransitionGroup />