Replies: 2 comments 1 reply
-
@sapegin could you suggest how to override? In 787da86#diff-a20da60dfec71fb7418916186c1249fe4746058a7f50348a43cd17f6157caca0R85 you added We use "VS Code" in our DDEV docs, and would like to continue doing so, as that's the normal reference people use, and it works best in search. But unfortunately, once you've added that rule, it seems there's no way to override it. The only thing I could do was to completely turn off
I tried all kinds of other approaches. |
Beta Was this translation helpful? Give feedback.
-
This works, and documented: {
rules: {
terminology: {
exclude: ['V[ -]?S[ -]?Code']
},
} I have updated the docs too to make it a bit more clear. |
Beta Was this translation helpful? Give feedback.
-
Hi, the default terms contain an entry that I would like to override. How can this be done? The words in question "code base", which Textlint does not like and would like to shorten to "codebase". I have tried to define my own
.textlintrc.json
containing this:{ "rules": { "terminology": { "defaultTerms": false, "exclude": ["codebase"] } } }
But it does not have any effect.
Please note that I am using Textlint through Super Linter.
Can you please let me know how this can be done?
Many thanks
Beta Was this translation helpful? Give feedback.
All reactions