Skip to content

Commit 0bff7d7

Browse files
committed
Add support for rubocop formatter
1 parent dae6dd8 commit 0bff7d7

File tree

3 files changed

+66
-0
lines changed

3 files changed

+66
-0
lines changed

autoload/codefmt/rubocop.vim

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
" Copyright 2017 Google Inc. All rights reserved.
2+
"
3+
" Licensed under the Apache License, Version 2.0 (the "License");
4+
" you may not use this file except in compliance with the License.
5+
" You may obtain a copy of the License at
6+
"
7+
" http://www.apache.org/licenses/LICENSE-2.0
8+
"
9+
" Unless required by applicable law or agreed to in writing, software
10+
" distributed under the License is distributed on an "AS IS" BASIS,
11+
" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
" See the License for the specific language governing permissions and
13+
" limitations under the License.
14+
15+
16+
let s:plugin = maktaba#plugin#Get('codefmt')
17+
18+
19+
""
20+
" @private
21+
" Formatter: rubocop
22+
function! codefmt#rubocop#GetFormatter() abort
23+
let l:formatter = {
24+
\ 'name': 'rubocop',
25+
\ 'setup_instructions': 'Install rubocop ' .
26+
\ '(https://rubygems.org/gems/rubocop).'}
27+
28+
function l:formatter.IsAvailable() abort
29+
return executable(s:plugin.Flag('rubocop_executable'))
30+
endfunction
31+
32+
function l:formatter.AppliesToBuffer() abort
33+
return &filetype is# 'eruby' || &filetype is# 'ruby'
34+
endfunction
35+
36+
""
37+
" Reformat the current buffer with rubocop or the binary named in
38+
" @flag(rubocop_executable), only targeting the range between {startline} and
39+
" {endline}.
40+
" @throws ShellError
41+
function l:formatter.FormatRange(startline, endline) abort
42+
let l:cmd = [s:plugin.Flag('rubocop_executable'), '--stdin', @%, '-a', '--no-color', '-fq', '-o', '/dev/null']
43+
44+
call maktaba#ensure#IsNumber(a:startline)
45+
call maktaba#ensure#IsNumber(a:endline)
46+
47+
let l:lines = getline(1, line('$'))
48+
let l:input = join(l:lines[a:startline - 1 : a:endline - 1], "\n")
49+
50+
let l:result = maktaba#syscall#Create(l:cmd).WithStdin(l:input).Call()
51+
let l:formatted = split(l:result.stdout, "\n")
52+
53+
let l:before = a:startline > 1 ? l:lines[ : a:startline - 2] : []
54+
let l:full_formatted = l:before + l:formatted[1:] + l:lines[a:endline :]
55+
56+
call maktaba#buffer#Overwrite(1, line('$'), l:full_formatted)
57+
endfunction
58+
59+
return l:formatter
60+
endfunction
61+

instant/flags.vim

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ call s:plugin.Flag('shfmt_options', ['-i', '2', '-sr', '-ci'])
105105
" The path to the shfmt executable.
106106
call s:plugin.Flag('shfmt_executable', 'shfmt')
107107

108+
""
109+
" The path to rubocop executable
110+
call s:plugin.Flag('rubocop_executable', 'rubocop')
111+
108112
""
109113
" Command line arguments to feed prettier. Either a list or callable that
110114
" takes no args and returns a list with command line arguments.

plugin/register.vim

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ call s:registry.SetValidator('codefmt#EnsureFormatter')
2323

2424
" Formatters that are registered later are given more priority when deciding
2525
" what the default formatter will be for a particular file type.
26+
call s:registry.AddExtension(codefmt#rubocop#GetFormatter())
2627
call s:registry.AddExtension(codefmt#prettier#GetFormatter())
2728
call s:registry.AddExtension(codefmt#rustfmt#GetFormatter())
2829
call s:registry.AddExtension(codefmt#jsbeautify#GetFormatter())

0 commit comments

Comments
 (0)