configuration does not apply in VS code?
See original GitHub issueHello, I’m trying to use the VS Code extension and cannot get the configuration file to work.
I have this log information from VS code:
INFO: Loading user/workspace configuration for “c:\Users\me\dd\project-xyz\things\X.md” (not in a workspace folder). INFO: Linting for “c:\Users\me\dd\project-xyz\things\X.md” will be run “onType”. INFO: Loading user/workspace configuration for “c:\Users\me\dd\project-abc\docs\X.md” (not in a workspace folder). INFO: Linting for “c:\Users\me\dd\project-abc\docs\X.md” will be run “onType”
I have configuration files at location c:\Users\me\dd\project-xyz
and c:\Users\me\dd\project-abc
. I tried many formats:
.markdownlint.cjs
// @ts-check
"use strict";
module.exports = {
"default": true,
"MD003": "setext_with_atx",
"MD009": false,
"MD012": false
}
.markdownlint.json
{
"MD003": "setext_with_atx",
"MD009": false,
"MD012": false
}
.markdownlint.yaml
MD003: setext_with_atx
MD009: false
MD012: false
VS code still shows me the warnings that I want to disable.
What am I doing wrong?
Issue Analytics
- State:
- Created a year ago
- Comments:8 (5 by maintainers)
Top GitHub Comments
Okay. Thanks!