Skip to content

Commit

Permalink
correct JSON syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdcrawford committed Jun 25, 2015
1 parent 5d253ff commit 7e0060a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@
"indent": [2, 2],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],

// eslint-plugin-react
// React specific linting rules for ESLint
"react/display-name": 0, // Prevent missing displayName in a React component
"react/jsx-quotes": [2, "double", "avoid-escape"], // Enforce quote style for JSX attributes
"react/jsx-no-undef": 2, // Disallow undeclared variables in JSX
Expand All @@ -38,6 +35,6 @@
"react/prop-types": 2, // Prevent missing props validation in a React component definition
"react/react-in-jsx-scope": 2, // Prevent missing React when using JSX
"react/self-closing-comp": 2, // Prevent extra closing tags for components without children
"react/wrap-multilines": 2, // Prevent missing parentheses around multilines JSX
"react/wrap-multilines": 2 // Prevent missing parentheses around multilines JSX
}
}

0 comments on commit 7e0060a

Please sign in to comment.