azu

Results 808 comments of azu

https://mochajs.org/#-config-path `--no-config` will helps it.

However, if pass `--no-config` by default, the user can not setting other config via `.mocharc.*`. for example, `timeout` options should be configurable.

markdown parser in texltint defined Table, TableRow, TableCell as extensions. https://github.com/textlint/textlint/blob/a088520447cf557ccbc5d08bb481f5b8bc33d2dd/packages/%40textlint/markdown-to-ast/src/mapping/markdown-syntax-map.ts#L26-L31 The reason is that They are not defined in [CommonMark Spec](https://spec.commonmark.org/). (They are gfm extension) However, various parser parse...

textlint just pass through an unknown node's type. For example, a parser creates `Example` type, and textlint pass the `Example` node to each rule. ```js // A rule can treat...

I've created a related issue https://github.com/textlint/textlint/issues/764 We need to introduce individual Node type before adding `Table` type.

It is minimal step that we add a rule example and test into `examples/`. The example work as actual test. integration test is potential for becoming over work.

The cascading mechanism(like per-directory) makes maintenance difficult. The `overrides` feature is useful, but it may be complex. Also, textlint does not support `extends` like ESLint and it may be `files`...

📝 Note: When I'm converting `cli-test.js`, I've met unexpected error. It is strange behavior. https://github.com/textlint/textlint/pull/392#issuecomment-352253836

Recently, I've created [@textlint/config\-loader](https://github.com/textlint/editor/tree/master/packages/@textlint/config-loader) package. We create a new `@textlint/config-validator` package that validates the rule option with the config. Pasado code ```ts import { loadConfig } from "@textlint/config-loader"; import {...

Also, We need relationship with Browser's WebWorker. #299 For example, we want to support Same Worker API and we may create a worker abstraction for @texltint/kernel.