Merge pull request #856 from kdheepak89/fix-yapf-style-issue

Fix yapf style issue
This commit is contained in:
Glavin Wiechert 2016-03-26 12:34:29 -03:00
commit 0c136cfc38
3 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- Add [clang-format](http://clang.llvm.org/docs/ClangFormat.html) beautifier for C/C++/Obj-C languages.
- Add [yapf](http://github.com/google/yapf) beautifier for Python.
- Closes [#776] (https://github.com/Glavin001/atom-beautify/issues/776) Add support for `collapse-preserve-inline` brace_style for javascript.
- Closes [#786](https://github.com/Glavin001/atom-beautify/issues/786) YAPF configuration files are ignored.
# v0.29.0
- Closes [#447](https://github.com/Glavin001/atom-beautify/issues/447). Improved Handlebars language support

View File

@ -70,6 +70,10 @@
{
"name": "Bati Sengul",
"url": "https://github.com/Focus"
},
{
"name": "Dheepak Krishnamurthy",
"url": "https://github.com/kdheepak89"
}
],
"engines": {

View File

@ -16,7 +16,6 @@ module.exports = class Yapf extends Beautifier
beautify: (text, language, options) ->
@run("yapf", [
"-i"
["--style=pep8"]
tempFile = @tempFile("input", text)
], help: {
link: "https://github.com/google/yapf"