Add new eslint rule "space-before-blocks"

This commit is contained in:
Guillaume Gomez 2022-05-25 13:55:54 +02:00
parent 6c7156d488
commit c5e3954887

View File

@ -49,5 +49,6 @@ module.exports = {
"func-call-spacing": ["error", "never"],
"space-infix-ops": "error",
"space-before-function-paren": ["error", "never"],
"space-before-blocks": "error",
}
};