Merge pull request #2165 from bbugh/fix-rubocop-exact-file-exclude
Fix rubocop exact file exclude
This commit is contained in:
commit
43bf23f2a1
|
@ -1,5 +1,6 @@
|
|||
# Next
|
||||
- Fixes an issue where Atom Beautify would display a Docker error instead of an executable error ([#2146](https://github.com/Glavin001/atom-beautify/issues/2146))
|
||||
- Fixes Rubocop not excluding files with an exact pattern match (`db/schema.rb` vs `db/**/*`)
|
||||
|
||||
# v0.32.5 (2018-05-28)
|
||||
- Fixes an issue with Rubocop not working on Windows ([#2092](https://github.com/Glavin001/atom-beautify/issues/2092))
|
||||
|
|
|
@ -62,7 +62,7 @@ module.exports = class Rubocop extends Beautifier
|
|||
rubocopArguments = [
|
||||
"--auto-correct"
|
||||
"--force-exclusion"
|
||||
"--stdin", "atom-beautify.rb" # filename is required but not used
|
||||
"--stdin", fullPath or "atom-beautify.rb" # --stdin requires an argument
|
||||
]
|
||||
exeOptions = {
|
||||
ignoreReturnCode: true,
|
||||
|
|
Loading…
Reference in New Issue