errata-ai / vale

:pencil: A markup-aware linter for prose built with speed and extensibility in mind.
https://vale.sh
MIT License
4.52k stars 155 forks source link

Integrate with existing tools #10

Closed jdkato closed 6 years ago

jdkato commented 7 years ago

Editors + CLI tools

Other

The following would be nice to have, but will probably need to access Vale through an API of some sort (see languagetool-msword10-addin, for example).

TimKam commented 7 years ago

Are you already working on an Atom plugin? If not, I could give it a try.

jdkato commented 7 years ago

I haven't started working on it, so the help would be much appreciated.

Thanks!

EDIT: Also, let me know if there's anything I can do to help -- I know Vale's documentation is poor at the moment.

TimKam commented 7 years ago

Thanks. I plan to have a first version ready at the weekend. I was wondering, though, if Vale can process text that is provided directly as an argument on the command line. For example, vale --text="Lint this text" - or similar. This would make linting text on the fly more practicable.

jdkato commented 7 years ago

No, this isn't currently supported. I'm not against adding this functionality, but I haven't decided on the best way to handle it yet.

Since Vale tries to be smart about syntax (e.g., ignoring code blocks), it'd either have to treat all text from --text as plain text or you'd need to specify the format (--text="Lint this text" --format="...", perhaps) since there's no file extension.

TimKam commented 7 years ago

Ok. Then it's linting on save for now, but I'm happy to make it on-the-fly linting once you implement this. The first version of the Atom plugin is available at https://atom.io/packages/atomic-vale, respectively https://github.com/TimKam/atomic-vale. I can transfer ownership, if you prefer.

jdkato commented 7 years ago

Thanks—it looks great! I'll let you know once I've implemented support for on-the-fly linting (it should be reasonably soon).

As far as ownership goes, I'm fine with you keeping it. It's up to you, though.

TimKam commented 7 years ago

Ok, then I'll keep ownership for now.

jdkato commented 7 years ago

I've implemented support input for stdin:

# Will be treated as plain text
$ vale 'This is some text to lint'
...
# Will be treated as Markdown
$ vale --ext='.md' 'This is some text to lint'
...
# Will be treated as plain text
$ echo 'this is more text' | vale
...

should all work now. I also have this working on a branch of the Sublime Text plugin (https://github.com/ValeLint/SubVale/blob/feat/buf/Vale.py#L53).

chew-z commented 7 years ago

I think vale should give other exit code then zero when there are some errors or warnings.

vale 'This is some some text to lint'
✔ 0 errors, 0 warnings and 0 suggestions in 1 file. 
vale 'This is very very text to lint'

 stdin.txt
 1:9   warning  Consider removing 'very'  vale.Editorializing
 1:14  warning  Consider removing 'very'  vale.Editorializing

✖ 0 errors, 2 warnings and 0 suggestions in 1 file.

Some other tools relay on non-zero (1) exit code to process the output further.

jdkato commented 7 years ago

@chew-z: Vale should exit with (1) on errors already (for example, I'm using Vale to lint its own documentation on Travis CI and the build will fail on errors). I think this is reasonable default behavior as you'll likely want to ignore many warnings and you can always change the rule's level if not:

[*]
vale.Editorializing = error

That said, I'm open to making this more configurable. Would you want a setting to control which levels result in a non-zero exit code?

chew-z commented 7 years ago

Yes, I think it would be useful to have more control over non-zero exit.

What I have been trying to do in a very lazy way was integrating vale with vim through ale plugin. I have simply copied plugin for proselint which comes to calling external command on a copy of current file. This should be simple enough but I had no luck so far.

Called from internal shell vale returns nice warrnings just like proselint

:!vale --ext='.md' "%"

but proselint is also returning exit 1 and this is what triggers ale into action, I think. This is common convention in vim that it is passing quietly when exit code is zero.

I will digg into that more tomorrow.

jdkato commented 7 years ago

After glancing at one of the implementations for proselint, I noticed that its callback (ale#handlers#unix#HandleAsWarning) expects Unix-style output. You may want to try passing the --output=line option to Vale, which will give the expected format:

$ vale --output=line /test/double.md
/test/double.md:2:13:vale.Repetition:'be' is repeated!
chew-z commented 7 years ago

There was a small, unrelated bug in ale which just had been fixed.

So now VIM+ale+vale is beautifully working for me with very minimal plugin in .../ale/ale_linters/markdown/vale.vim:

call ale#linter#Define('markdown', {
\   'name': 'vale',
\   'executable': 'vale',
\   'command': "vale --output=line %t",
\   'callback': 'ale#handlers#unix#HandleAsWarning',
\})

btw: what is option --ext='.md' good for?

jdkato commented 7 years ago

Vale needs to know the format of a file so it can properly lint it (e.g., skip code blocks, etc.). This is normally done by inspecting the file extension, but there's no extension when input is given via stdin. So, you can optionally specify one with --ext (if omitted, Vale will treat input as .txt and apply no special logic).

w0rp commented 7 years ago

@chew-z With %t in ALE, the temporary filename created will use the same basename as a file you're editing, so it should be able to pick up the file extension from there.

chew-z commented 7 years ago

So my pull request has been accepted and glue for vale is now part of ale.

So it could be said that now vale is integrated also with VIM.

jdkato commented 7 years ago

Thanks! I've updated the README.

swsnr commented 7 years ago

FYI, I wrote and published a VSCode extension. I'm sorry; I didn't realise you were already working on one, and I'm happy to deprecate my extension when the official one is ready.

jdkato commented 7 years ago

@lunaryorn: Oh, that's okay! Mine is in pretty rough shape anyway, so I think I'll just defer to your work.

swsnr commented 7 years ago

@jdkato Thanks :blush:

ChrisChinchilla commented 5 years ago

@jdkato Can we reopen this, or track some of the other integration points elsewhere? I am working on some browser plugin ideas…

ChrisChinchilla commented 5 years ago

One really useful step that I'm a bit stuck on is figuring out how to run vale on a remote host. I'm not too familiar with go to know the best and most cost-effective way of doing this though.

jdkato commented 5 years ago

@ChrisChinchilla: Sure, I've created a new issue (#97) where we can discuss browser addons/plugins.