Clean up logging, remove atom-typescript from specs

This commit is contained in:
Glavin Wiechert 2015-06-10 16:45:34 -03:00
parent d6297bdefc
commit 9afde9bfd1
2 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ describe "BeautifyLanguages", ->
dependentPackages = [
'autocomplete-plus'
'linter'
'atom-typescript'
# 'atom-typescript' # it logs too much...
]
# Add language packages to dependentPackages
for lang in allLanguages

View File

@ -23,7 +23,7 @@ module.exports = class Rubocop extends Beautifier
"Width": options.indent_size
}
configStr = yaml.safeDump(config)
console.log("rubocop", config, configStr)
@debug("rubocop", config, configStr)
@run("rubocop", [
"--auto-correct"
@ -33,8 +33,8 @@ module.exports = class Rubocop extends Beautifier
.then(=>
# console.log('rubocop', arguments, tempFile)
@readFile(tempFile)
.then((text) ->
console.log('rubocop', text)
return text
)
# .then((text) ->
# console.log('rubocop', text)
# return text
# )
)