-
Hello community I don't know if it's really a bug or if I have something wrong configured at my environment, so I prefer to ask first before scale it. I am trying to migrate from
My enviroment
At console I have installed Node 12.x (due to OS restrictions with 14.x) and $ node --version
v12.22.5 My config filesAs it could check, I already have the addon updated to latest version I have all configured using a {
"plugins": [
["lint"],
["lint-alphabetize-lists"],
["lint-final-newline", true],
["lint-heading-style", "atx"],
["lint-no-duplicate-headings", true],
["lint-no-emphasis-as-heading", true],
["lint-no-heading-content-indent", true],
["lint-no-heading-indent", true],
["lint-no-heading-punctuation", true],
["lint-no-literal-urls", true],
["lint-no-tabs", true],
["lint-strong-marker", "consistent"],
["lint-unordered-list-marker-style", "*"],
["lint-blank-lines-1-0-2"],
["lint-books-links"],
["lint-no-empty-sections"],
["lint-no-empty-url"],
["lint-no-url-trailing-slash"]
]
} And of course installed each package as seen in {
"scripts": {
"lint": "remark ."
},
"devDependencies": {
"remark-cli": "^10.0.0",
"remark-lint": "^9.0.1",
"remark-lint-alphabetize-lists": "^3.0.0",
"remark-lint-blank-lines-1-0-2": "^3.0.0",
"remark-lint-books-links": "^2.1.0",
"remark-lint-final-newline": "^2.0.1",
"remark-lint-heading-style": "^3.0.1",
"remark-lint-no-duplicate-headings": "^3.0.1",
"remark-lint-no-emphasis-as-heading": "^3.0.1",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-empty-url": "^3.0.1",
"remark-lint-no-heading-content-indent": "^4.0.1",
"remark-lint-no-heading-indent": "^4.0.1",
"remark-lint-no-heading-punctuation": "^3.0.1",
"remark-lint-no-literal-urls": "^3.0.1",
"remark-lint-no-tabs": "^3.0.1",
"remark-lint-no-url-trailing-slash": "^3.0.1",
"remark-lint-strong-marker": "^3.0.1",
"remark-lint-unordered-list-marker-style": "^3.0.1"
}
} Is it possible that it is some incompatibility of versions? But which one? I don't know 😟 Thanks in advance 🙇 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Unfortunately VSCode/Electron don’t support ESM yet, whereas all remark plugins have migrated to it. |
Beta Was this translation helpful? Give feedback.
Unfortunately VSCode/Electron don’t support ESM yet, whereas all remark plugins have migrated to it.
The only solution for now is to use the previous version of all packages, or only use remark-cli!