Skip to content

Commit

Permalink
Merge branch 'lencioni-remove-deprecated-jsx-quotes'
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickcr committed Feb 14, 2016
2 parents c139931 + af9fa81 commit e3a168d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 191 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ Finally, enable all of the rules that you would like to use.
"react/jsx-no-literals": 1,
"react/jsx-no-undef": 1,
"react/jsx-pascal-case": 1,
"react/jsx-quotes": 1,
"react/jsx-sort-prop-types": 1,
"react/jsx-sort-props": 1,
"react/jsx-space-before-closing": 1,
Expand Down Expand Up @@ -133,7 +132,6 @@ Finally, enable all of the rules that you would like to use.
* [jsx-no-literals](docs/rules/jsx-no-literals.md): Prevent usage of unwrapped JSX strings
* [jsx-no-undef](docs/rules/jsx-no-undef.md): Disallow undeclared variables in JSX
* [jsx-pascal-case](docs/rules/jsx-pascal-case.md): Enforce PascalCase for user-defined JSX components
* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes
* [jsx-sort-prop-types](docs/rules/jsx-sort-prop-types.md): Enforce propTypes declarations alphabetical sorting
* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting
* [jsx-space-before-closing](docs/rules/jsx-space-before-closing.md): Validate spacing before closing bracket in JSX (fixable)
Expand Down
54 changes: 0 additions & 54 deletions docs/rules/jsx-quotes.md

This file was deleted.

2 changes: 0 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ module.exports = {
'jsx-pascal-case': require('./lib/rules/jsx-pascal-case'),
'jsx-no-bind': require('./lib/rules/jsx-no-bind'),
'jsx-no-undef': require('./lib/rules/jsx-no-undef'),
'jsx-quotes': require('./lib/rules/jsx-quotes'),
'no-unknown-property': require('./lib/rules/no-unknown-property'),
'jsx-curly-spacing': require('./lib/rules/jsx-curly-spacing'),
'jsx-equals-spacing': require('./lib/rules/jsx-equals-spacing'),
Expand Down Expand Up @@ -62,7 +61,6 @@ module.exports = {
'jsx-pascal-case': 0,
'jsx-no-bind': 0,
'jsx-no-undef': 0,
'jsx-quotes': 0,
'no-unknown-property': 0,
'jsx-curly-spacing': 0,
'jsx-equals-spacing': 0,
Expand Down
92 changes: 0 additions & 92 deletions lib/rules/jsx-quotes.js

This file was deleted.

41 changes: 0 additions & 41 deletions tests/lib/rules/jsx-quotes.js

This file was deleted.

0 comments on commit e3a168d

Please sign in to comment.