Skip to content

Commit af9fa81

Browse files
committed
Merge branch 'remove-deprecated-jsx-quotes' of https://github.com/lencioni/eslint-plugin-react into lencioni-remove-deprecated-jsx-quotes
Conflicts: lib/rules/jsx-quotes.js
2 parents c139931 + 9549d3a commit af9fa81

File tree

5 files changed

+0
-191
lines changed

5 files changed

+0
-191
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ Finally, enable all of the rules that you would like to use.
8888
"react/jsx-no-literals": 1,
8989
"react/jsx-no-undef": 1,
9090
"react/jsx-pascal-case": 1,
91-
"react/jsx-quotes": 1,
9291
"react/jsx-sort-prop-types": 1,
9392
"react/jsx-sort-props": 1,
9493
"react/jsx-space-before-closing": 1,
@@ -133,7 +132,6 @@ Finally, enable all of the rules that you would like to use.
133132
* [jsx-no-literals](docs/rules/jsx-no-literals.md): Prevent usage of unwrapped JSX strings
134133
* [jsx-no-undef](docs/rules/jsx-no-undef.md): Disallow undeclared variables in JSX
135134
* [jsx-pascal-case](docs/rules/jsx-pascal-case.md): Enforce PascalCase for user-defined JSX components
136-
* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes
137135
* [jsx-sort-prop-types](docs/rules/jsx-sort-prop-types.md): Enforce propTypes declarations alphabetical sorting
138136
* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting
139137
* [jsx-space-before-closing](docs/rules/jsx-space-before-closing.md): Validate spacing before closing bracket in JSX (fixable)

docs/rules/jsx-quotes.md

Lines changed: 0 additions & 54 deletions
This file was deleted.

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ module.exports = {
2020
'jsx-pascal-case': require('./lib/rules/jsx-pascal-case'),
2121
'jsx-no-bind': require('./lib/rules/jsx-no-bind'),
2222
'jsx-no-undef': require('./lib/rules/jsx-no-undef'),
23-
'jsx-quotes': require('./lib/rules/jsx-quotes'),
2423
'no-unknown-property': require('./lib/rules/no-unknown-property'),
2524
'jsx-curly-spacing': require('./lib/rules/jsx-curly-spacing'),
2625
'jsx-equals-spacing': require('./lib/rules/jsx-equals-spacing'),
@@ -62,7 +61,6 @@ module.exports = {
6261
'jsx-pascal-case': 0,
6362
'jsx-no-bind': 0,
6463
'jsx-no-undef': 0,
65-
'jsx-quotes': 0,
6664
'no-unknown-property': 0,
6765
'jsx-curly-spacing': 0,
6866
'jsx-equals-spacing': 0,

lib/rules/jsx-quotes.js

Lines changed: 0 additions & 92 deletions
This file was deleted.

tests/lib/rules/jsx-quotes.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)