azu
azu
* [Release [email protected] · remarkjs/remark](https://github.com/remarkjs/remark/releases/tag/remark-parse%407.0.0) * [Release [email protected] · remarkjs/remark](https://github.com/remarkjs/remark/releases/tag/remark-parse%406.0.0)
Fm, #662 fixes markdown plugin. Probably, other plugins(json or html?) has same issue. Can you create a minimal reproduce repository? We need to debug it.
Yes please if its possible.
Thanks. It look like that json plugin does not define `loc` property. It is the reason of error. https://github.com/duck8823/textlint-plugin-json/blob/70de3684fe32fccc4941fe09e7d29feb4a7d21eb/src/JSONProcessor.js#L65
Interesting. Similar discussion is hold on ESLint https://github.com/eslint/eslint/issues/3134 > I'm not sure an interactive prompt makes sense given that some run ESLint on massive codebases, you could send up with...
Principle: textlint process texts, and output serialized message data. It is thought from **textlint side**. First, We will need to think the serialized message data format like this. ``` //...
It is thought from **other side** :bulb: You can implement _textsuggest_ without changing the `textlint` maybe. [TextLintMessage](https://github.com/textlint/textlint/blob/master/typing/textlint.d.ts) interface has `data` property that is any data. ``` interface TextLintMessage { ruleId:...
Related issues: #124. https://github.com/stylelint/stylelint/issues/330
> I saw message formatter is called synchronous. `TextLintEngine#formatResults` just use https://github.com/textlint/textlint-formatter . `TextFixEngine` has formatter limitation #148
Currently, textlint has not built-in html formatter. But, textlint support external formatter as plugin. - Example: textlint formatter for lcov. - [azu/textlint-formatter-lcov: textlint formatter for lcov format](https://github.com/azu/textlint-formatter-lcov) We can create...