Skip to content

Commit 9549d3a

Browse files
committed
Remove deprecated jsx-quotes
This was deprecated by f817e37 in September 2015 and was first released in v3.4.0. Now that we are on 3.16.x, I think it is safe to finally remove this deprecated rule.
1 parent b2661aa commit 9549d3a

File tree

5 files changed

+0
-188
lines changed

5 files changed

+0
-188
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ Finally, enable all of the rules that you would like to use.
8989
"react/jsx-no-literals": 1,
9090
"react/jsx-no-undef": 1,
9191
"react/jsx-pascal-case": 1,
92-
"react/jsx-quotes": 1,
9392
"react/jsx-sort-prop-types": 1,
9493
"react/jsx-sort-props": 1,
9594
"react/jsx-space-before-closing": 1,
@@ -134,7 +133,6 @@ Finally, enable all of the rules that you would like to use.
134133
* [jsx-no-literals](docs/rules/jsx-no-literals.md): Prevent usage of unwrapped JSX strings
135134
* [jsx-no-undef](docs/rules/jsx-no-undef.md): Disallow undeclared variables in JSX
136135
* [jsx-pascal-case](docs/rules/jsx-pascal-case.md): Enforce PascalCase for user-defined JSX components
137-
* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes
138136
* [jsx-sort-prop-types](docs/rules/jsx-sort-prop-types.md): Enforce propTypes declarations alphabetical sorting
139137
* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting
140138
* [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'),
@@ -61,7 +60,6 @@ module.exports = {
6160
'jsx-pascal-case': 0,
6261
'jsx-no-bind': 0,
6362
'jsx-no-undef': 0,
64-
'jsx-quotes': 0,
6563
'no-unknown-property': 0,
6664
'jsx-curly-spacing': 0,
6765
'jsx-equals-spacing': 0,

lib/rules/jsx-quotes.js

Lines changed: 0 additions & 89 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)