Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Oct 31, 2020
1 parent 78f543d commit 3b7031e
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@
"react/jsx-boolean-value": "error",
"react/jsx-closing-bracket-location": ["error", "tag-aligned"],
"react/jsx-closing-tag-location": "error",
"react/jsx-curly-brace-presence": ["error", { "props": "never", "children": "never" }],
"react/jsx-curly-newline": ["error", { "multiline": "consistent", "singleline": "consistent" }],
"react/jsx-curly-brace-presence": ["error", {
"props": "never",
"children": "never"
}],
"react/jsx-curly-newline": ["error", {
"multiline": "consistent",
"singleline": "consistent"
}],
"react/jsx-curly-spacing": ["error", {
"attributes": { "when": "never" },
"children": { "when": "never" },
"allowMultiline": true
"attributes": { "when": "never", "allowMultiline": true },
"children": { "when": "never", "allowMultiline": true }
}],
"react/jsx-equals-spacing": ["error", "never"],
"react/jsx-first-prop-new-line": ["error", "multiline-multiprop"],
Expand Down

0 comments on commit 3b7031e

Please sign in to comment.