Add eslint key-spacing check

This commit is contained in:
Guillaume Gomez 2022-05-20 17:05:20 +02:00
parent b036fd378b
commit 116c5a25e7

View File

@ -42,5 +42,9 @@ module.exports = {
"error",
{ "before": true, "after": true }
],
"key-spacing": [
"error",
{ "beforeColon": false, "afterColon": true, "mode": "strict" }
],
}
};