Class: CoffeeFmt
Defined in: | src/beautifiers/coffee-fmt.coffee |
Inherits: | Beautifier |
Variables Summary
- name =
-
"coffee-fmt"
- options =
-
{ /* Apply language-specific options */ CoffeeScript: { tab: [ "indent_size", "indent_char", "indent_with_tabs", function(indentSize, indentChar, indentWithTabs) { if (indentWithTabs) { return "\t"; } return Array(indentSize + 1).join(indentChar); } ] } }
Variable inherited from Beautifier
Promise name options languages beautify _envCache _envCacheDate _envCacheExpiry logger
Instance Method Summary
Inherited Method Summary
Methods inherited from
Beautifier
#deprecate #tempFile #readFile #getShellEnvironment #which #commandNotFoundError #run #spawn #setupLogger
Instance Method Details
#
(void)
beautify(text, language, options)