Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable react-specific linting rules (pure JSX) #13

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Disable react-specific JSX restrictions
- Allow unknown properties
- Disable props validation (prop-types)
  • Loading branch information
Matej Kieres committed Jan 6, 2016
commit 81c7398d918ad6d7bf3864aaaa581f642075cf7b
4 changes: 2 additions & 2 deletions eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"react/no-did-mount-set-state": 0,
"react/no-did-update-set-state": 2,
"react/no-multi-comp": 0,
"react/no-unknown-property": 2,
"react/prop-types": 2,
"react/no-unknown-property": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"react/self-closing-comp": 2,
"react/sort-comp": 0,
Expand Down