1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Tools: Linter: Enforce object-curly-spacing - always

This commit is contained in:
Laurent Cozic 2020-02-04 22:09:34 +00:00
parent 49701fbc55
commit 737c3f62db
36 changed files with 88 additions and 87 deletions

View File

@ -68,6 +68,7 @@ module.exports = {
"linebreak-style": ["error", "unix"], "linebreak-style": ["error", "unix"],
"prefer-template": ["error"], "prefer-template": ["error"],
"template-curly-spacing": ["error", "never"], "template-curly-spacing": ["error", "never"],
"object-curly-spacing": ["error", "always"],
"key-spacing": ["error", { "key-spacing": ["error", {
"beforeColon": false, "beforeColon": false,
"afterColon": true, "afterColon": true,