Fix lint errors

This commit is contained in:
Yang Zhang 2015-09-27 18:14:00 +08:00
parent c56735f2fb
commit c89077819f
2 changed files with 3 additions and 3 deletions

View File

@ -65,8 +65,8 @@ module.exports = class ClangFormat extends Beautifier
@dumpToFile(dumpFile, text)
["--style=file"]
], help: {
link: "https://clang.llvm.org/docs/ClangFormat.html"
}).finally( =>
link: "https://clang.llvm.org/docs/ClangFormat.html"
}).finally( ->
fs.unlink(dumpFile)
)
)

View File

@ -21,5 +21,5 @@ module.exports = class Yapf extends Beautifier
["--style=pep8"]
@tempFile("input", text)
], help: {
link: "https://github.com/google/yapf"
link: "https://github.com/google/yapf"
})