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

Pass valid filenames to formatter RuboCop #825

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/language-server-ruby/src/formatters/RuboCop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class RuboCop extends BaseFormatter {

get args(): string[] {
const documentPath = URI.parse(this.document.uri);
const args = ['-s', `'${documentPath.fsPath}'`, '-a'];
const args = ['-s', documentPath.fsPath, '-a'];
return args;
}

Expand Down