eslint-config-prettier
Version:
Turns off all rules that are unnecessary or might conflict with prettier.
18 lines (16 loc) • 489 B
JavaScript
;
module.exports = {
rules: {
"react/jsx-closing-bracket-location": "off",
"react/jsx-curly-spacing": "off",
"react/jsx-equals-spacing": "off",
"react/jsx-first-prop-new-line": "off",
"react/jsx-indent": "off",
"react/jsx-indent-props": "off",
"react/jsx-max-props-per-line": "off",
"react/jsx-space-before-closing": "off",
"react/jsx-tag-spacing": "off",
"react/jsx-wrap-multilines": "off",
"react/wrap-multilines": "off"
}
};