Add new eslint rule "comma-style"

This commit is contained in:
Guillaume Gomez 2022-05-25 13:57:08 +02:00
parent 4dbc6764cf
commit 33245e0bb3

View File

@ -51,5 +51,6 @@ module.exports = {
"space-before-function-paren": ["error", "never"],
"space-before-blocks": "error",
"comma-dangle": ["error", "always-multiline"],
"comma-style": ["error", "last"],
}
};