mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
22 lines
676 B
JavaScript
22 lines
676 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
rules: {
|
|
"react/jsx-child-element-spacing": "off",
|
|
"react/jsx-closing-bracket-location": "off",
|
|
"react/jsx-closing-tag-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-one-expression-per-line": "off",
|
|
"react/jsx-props-no-multi-spaces": "off",
|
|
"react/jsx-space-before-closing": "off",
|
|
"react/jsx-tag-spacing": "off",
|
|
"react/jsx-wrap-multilines": "off",
|
|
"react/self-closing-comp": "off"
|
|
}
|
|
};
|