Merge branch 'master' of github.com:Glavin001/atom-beautify into feature/executables

This commit is contained in:
Glavin Wiechert 2017-06-05 01:51:36 -03:00
commit beed2e37db
3 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
# Next
- Fix [#1652](https://github.com/Glavin001/atom-beautify/issues/1652) and [#1653](https://github.com/Glavin001/atom-beautify/issues/1653). Add `.rb` to temp files passed in to the `rubocop` executable so they are not excluded.
- ...
# v0.29.26 (2017-05-28)

View File

@ -92,7 +92,7 @@ module.exports = class PHPCBF extends Beautifier
@run("phpcbf", [
"--no-patch" unless options.phpcbf_version is 3
"--standard=#{options.standard}" if options.standard
tempFile = @tempFile("temp", text)
tempFile = @tempFile("temp", text, ".php")
], {
ignoreReturnCode: true
help: {

View File

@ -51,7 +51,7 @@ module.exports = class Rubocop extends Beautifier
@run(rubocopPath, [
"--auto-correct"
"--config", configFile
tempFile = @tempFile("temp", text)
tempFile = @tempFile("temp", text, '.rb')
], {ignoreReturnCode: true})
.then(=>
@readFile(tempFile)
@ -60,7 +60,7 @@ module.exports = class Rubocop extends Beautifier
@run("rubocop", [
"--auto-correct"
"--config", configFile
tempFile = @tempFile("temp", text)
tempFile = @tempFile("temp", text, '.rb')
], {ignoreReturnCode: true})
.then(=>
@readFile(tempFile)