|
| 1 | +" Copyright 2023 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 | +let s:plugin = maktaba#plugin#Get('codefmt') |
| 16 | + |
| 17 | + |
| 18 | +"" |
| 19 | +" @private |
| 20 | +" Formatter: rubocop |
| 21 | +function! codefmt#rubocop#GetFormatter() abort |
| 22 | + let l:formatter = { |
| 23 | + \ 'name': 'rubocop', |
| 24 | + \ 'setup_instructions': 'Install rubocop ' . |
| 25 | + \ '(https://rubygems.org/gems/rubocop).'} |
| 26 | + |
| 27 | + function l:formatter.IsAvailable() abort |
| 28 | + return executable(s:plugin.Flag('rubocop_executable')) |
| 29 | + endfunction |
| 30 | + |
| 31 | + function l:formatter.AppliesToBuffer() abort |
| 32 | + return &filetype is# 'eruby' || &filetype is# 'ruby' |
| 33 | + endfunction |
| 34 | + |
| 35 | + "" |
| 36 | + " Reformat the current buffer with rubocop or the binary named in |
| 37 | + " @flag(rubocop_executable), only targeting the range between {startline} and |
| 38 | + " {endline}. |
| 39 | + " |
| 40 | + " @throws ShellError |
| 41 | + function l:formatter.FormatRange(startline, endline) abort |
| 42 | + " See flag explanations at: |
| 43 | + " https://docs.rubocop.org/rubocop/1.51/usage/basic_usage.html |
| 44 | + let l:cmd = [s:plugin.Flag('rubocop_executable'), '--stdin', @%, '-a', '--no-color', '-fq', '-o', '/dev/null'] |
| 45 | + |
| 46 | + " Rubocop exits with an error condition if there are lint errors, even |
| 47 | + " after successfully formatting. This is annoying for our purpuoses, |
| 48 | + " because we have no way to distinguish lint errors from a 'real' falure. |
| 49 | + " Use Call(0) to suppress maktaba's error handling. |
| 50 | + let l:ignoreerrors = 1 |
| 51 | + " Rubocop is primarily a linter, and by default it outputs lint errors |
| 52 | + " first, followed by a dividing line, and then the formatted result. |
| 53 | + " '-o /dev/null' in the command line suppresses any lint errors, but the |
| 54 | + " divider is always printed. |
| 55 | + let l:skipfirstnlines = 1 |
| 56 | + |
| 57 | + " Rubocop does not support range formatting; see bug: |
| 58 | + " https://github.com/Shopify/ruby-lsp/issues/203 |
| 59 | + call codefmt#formatterhelpers#AttemptFakeRangeFormatting( |
| 60 | + \ a:startline, a:endline, l:cmd, l:ignoreerrors, l:skipfirstnlines) |
| 61 | + endfunction |
| 62 | + |
| 63 | + return l:formatter |
| 64 | +endfunction |
0 commit comments