Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Use stdin instead of temp file #72

Merged
merged 13 commits into from
Sep 25, 2015
Prev Previous commit
Next Next commit
Disable rubocop caching
  • Loading branch information
caseywebdev committed Sep 25, 2015
commit 1c4282e0b79644f941d024b787689225ddb73f27
2 changes: 1 addition & 1 deletion index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ helpers = require 'atom-linter'
COMMAND_CONFIG_KEY = 'linter-rubocop.executablePath'
ARGS_CONFIG_KEY = 'linter-rubocop.additionalArguments'
DEFAULT_LOCATION = {line: 1, column: 1, length: 0}
DEFAULT_ARGS = ['--force-exclusion', '-f', 'json', '-s']
DEFAULT_ARGS = ['--cache', 'false', '--force-exclusion', '-f', 'json', '-s']
DEFAULT_MESSAGE = 'Unknown Error'
WARNINGS = new Set(['refactor', 'convention', 'warning'])

Expand Down