3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-18 07:35:02 +00:00

dashboard: fix space indents; code formatting

This commit is contained in:
Dragory 2019-07-22 13:10:36 +03:00
parent 28b4541e79
commit 357306ef7b

View file

@ -61,9 +61,14 @@
cmConfig: { cmConfig: {
indentWithTabs: false, indentWithTabs: false,
indentUnit: 2, indentUnit: 2,
smartIndent: false,
lineNumbers: true, lineNumbers: true,
mode: "text/x-yaml", mode: "text/x-yaml",
theme: "oceanic-next", theme: "oceanic-next",
extraKeys: {
Tab: cm => cm.execCommand("indentMore"),
"Shift-Tab": cm => cm.execCommand("indentLess"),
},
}, },
}; };
}, },