-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: Use misspell binary #529
Conversation
Building misspell might use lots of resource and be killed. #513 (comment) ref: https://github.com/client9/misspell#install
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go downloader looks benri
.drone.yml
Outdated
@@ -8,7 +8,7 @@ build: | |||
- REVIEWDOG_GITHUB_API_TOKEN=$$REVIEWDOG_GITHUB_API_TOKEN | |||
commands: | |||
- go get -d -v ./scripts | |||
- go get -u github.com/client9/misspell/cmd/misspell | |||
- curl -L https://git.io/misspell | sh |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From misspell's installation document,
Both will install as ./bin/misspell.
So we might need to specify misspell
executable with relative path in reviewdog.yml
or specify a directory to install with -b
option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, thank you for the catch!
autoload/vital.vim
Outdated
@@ -10,3 +10,5 @@ function! vital#of(name) abort | |||
endif | |||
return vital#_{substitute(ver[0], '\W', '', 'g')}#new() | |||
endfunction | |||
|
|||
let g:exsiting_variable = 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[misspell] reported by reviewdog 🐶
"exsiting" is a misspelling of "existing"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐦 👍
autoload/vital.vim
Outdated
@@ -10,3 +10,5 @@ function! vital#of(name) abort | |||
endif | |||
return vital#_{substitute(ver[0], '\W', '', 'g')}#new() | |||
endfunction | |||
|
|||
let g:exsiting_variable = 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[misspell] reported by reviewdog 🐶
"exsiting" is a misspelling of "existing"
Fixed. Please take another look. |
autoload/vital.vim
Outdated
@@ -10,3 +10,5 @@ function! vital#of(name) abort | |||
endif | |||
return vital#_{substitute(ver[0], '\W', '', 'g')}#new() | |||
endfunction | |||
|
|||
let g:exsiting_variable = 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[misspell] reported by reviewdog 🐶
"exsiting" is a misspelling of "existing"
Building misspell might use lots of resource and be killed.
#513 (comment)
ref: https://github.com/client9/misspell#install