From 05b20e61c997055adb29a7e0422cfe9d3c84c6d0 Mon Sep 17 00:00:00 2001 From: Brian Bugh Date: Wed, 13 Jun 2018 15:40:00 -0500 Subject: [PATCH] Fixes Rubocop AllCops Exclude exact file names --- src/beautifiers/rubocop.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beautifiers/rubocop.coffee b/src/beautifiers/rubocop.coffee index fd03f85..f15df96 100644 --- a/src/beautifiers/rubocop.coffee +++ b/src/beautifiers/rubocop.coffee @@ -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,