azu

Results 808 comments of azu

We might well have started with creating `@textlint/browser` as is a wrapper of kernel with WebWorker support. >`@textlint/browser` = `@textlint/kernel` + WebWorker + α @Leko How about you?

We can use [playground](https://github.com/textlint/playground) as MVP(Minimum Viable Product). It is a just editor that work on browser. I think that we should have experimental product(like playground app) which use `@textlint/browser`....

I'm working on https://github.com/textlint/editor textlint editor works on a browser. https://github.com/textlint/editor/tree/master/packages/%40textlint/script-compiler compile textlint + textlintrc as web worker.

I don't know textlint plugin for org-mode file, but [@textlint/textlint-plugin-text](https://github.com/textlint/textlint/tree/master/packages/%40textlint/textlint-plugin-text) support `extensions` option. You can lint `.org` file as `txt` file by setting next configuration. `.textlintrc`: ```json { "plugins": {...

> Is there a way to define "extensions": [".org"] as a textlint command flag if --plugin @textlint/text is given, rather than in a .textlintrc file? No. Currently that command line...

ESLint has similar issue: - https://github.com/eslint/eslint/issues/7390 - https://github.com/eslint/eslint/pull/7395 - https://github.com/eslint/eslint/pull/10143

Unfortunately, current [TxtAST](https://github.com/textlint/textlint/blob/bc57614fc7d89e0829f270d02834bbbf0f876dfc/docs/txtnode.md#type) define only `TxtParentNode`(Parent) and `TxtTextNode`(Child) node. It does not defined `TxtLinkNode`. `TypeofTxtNode` type function just return Parent or Child. So, `url` property to be `any` type. It...

I have a idea. Add `locator` API to `context` object like `fixer` API. And, `report`'s second argument accept `location` property. `location` propery is abstraction of relative position from `node`. -...

textlint-tester found invalid range if that rule report invalid range. https://github.com/textlint/textlint-tester/pull/11

[textlint-rule-no-dead-link](https://github.com/textlint-rule/textlint-rule-no-dead-link) aim to find dead link. 5xx response is a part of dead link. The reason come from server. For example, If a server response "Internal Error 500" for a...