lint squiggles do not appear in vscode with remark extension installed #1363
Answered
by
remcohaszing
LokiMidgard
asked this question in
Q&A
-
I installed remark extension to vscode and the formatting works, but warnings are not displayed (not in the problem window, nor in the editor) I added following package.json {
"name": "sand-artefakte",
"version": "1.0.0",
"description": "",
"scripts": {
"format": "remark . --output"
},
"author": "",
"license": "ISC",
"remarkConfig": {
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-preset-lint-markdown-style-guide",
"remark-frontmatter",
"remark-lint"
],
"settings": {
"bullet": "-"
}
},
"dependencies": {
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-lint": "^10.0.0",
"remark-lint-maximum-line-length": "^4.0.1",
"remark-preset-lint-consistent": "^6.0.0",
"remark-preset-lint-markdown-style-guide": "^6.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"remark-toc": "^9.0.0"
}
} executing
|
Beta Was this translation helpful? Give feedback.
Answered by
remcohaszing
Sep 19, 2024
Replies: 1 comment 18 replies
-
I am seeing diagnostics with the code that you provided. You dependencies are up-to-date, so that’s good. What version of VSCode and the remark extension are you using? And what operating system? |
Beta Was this translation helpful? Give feedback.
18 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I managed to reproduce it by running the following script in the
vscode-remark
repo.