SublimeLinter-contrib-write-good
SublimeLinter-contrib-write-good copied to clipboard
In readme document how to disable specific rules
Should one use "ignore" or "args"?
something like this should work but I've never tested it:
{
"args": [
"--no-passive",
"--weasel"
]
}
Please let me know if you have any luck and I'll update the readme or I'd happily accept a PR ;)
Yes, I am successfully doing this now. Could you include this in the readme?
in the readme, it would help to know, which file should contain code like the above example? where in that file should it be placed? what is the complete set of available options?
Coming to this thread after a long while and I can't get it to work. I'm guessing that you need to add the args
array in SublimeLinter.sublime-settings
but this does nothing:
// SublimeLinter Settings - User
{
"debug": true,
"linters": {
"markdownlint": {
},
"write-good": {
"args": [
"--no-passive",
"--no-weasel"
]
}
},
"show_panel_on_save": "view"
}
Can anyone tell me what I'm doing wrong?