allow empty blocks

This commit is contained in:
Bruno Windels 2021-02-11 21:08:43 +01:00
parent 105df9d64a
commit b81ff4b734
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ module.exports = {
"sourceType": "module"
},
"rules": {
"no-console": "off"
"no-console": "off",
"no-empty": "off"
}
};