azu
azu
http://petit.lib.yamaguchi-u.ac.jp/G0000006y2j2/file/21611/20130514114653/C060036000008.pdf "とする"と"になる"の使い分けについて
props - input - filePath? key pdf, epub, preview is an implementation of this plugin.
Re:VIEWの拡張子に対応していないのかと思いきや、`source.re`の対応は入っているのか #31 #32 何でだろう… https://github.com/1000ch/linter-textlint/blob/b5ed220e209509d659deaf831f5f3dc6c25739da/lib/index.js#L41-L46 https://github.com/vvakame/language-review/blob/7ff5c48ab29207214c4a59005738e7846fd01db8/grammars/review.json#L2
OS: OSX Yosemite 10.10.5と El Capitan Atom 1.10.2 でも同じ問題がおきてました。
https://github.com/azu/linter-atom-issue-27 で再現できました。 ``` git clone https://github.com/azu/linter-atom-issue-27 issue cd issue npm i atom . ``` で 2行目の先頭で `backspace` を押すと例外が出る感じでした。  ルールによって不正なカラム位置が返されてるのかもしれないです。 (textlint自体はline, columnがはみ出ているかのチェックをしてないはずなので)
http://denpa-shinbun.com/entry/textlint-rule も同じ話っぽい。 ルールが異常値出したときにtextlint側で丸めるのか、Atom plugin側で丸めるのかというのはありそう。 (個人的には両方かなという感じはしてます)
ルールが異常値を出すのはあり得えますが、この場合Lint As You Typeじゃなくても起きるはずなんですよね。 なので、Linterのチェックも怪しい感じがしてきますね。 textlintは非同期で処理するので、チェック瞬間の行数とチェック後の行数は異なることはありそうなので、その辺補正されてないと存在しない行へのエラレポートになってしまいそう。
This bug come from breaking change of Firefox 46. - [ES6-compatible let disallows variable redeclaration (Affected) | Firefox Site Compatibility](https://www.fxsitecompat.com/en-CA/docs/2014/es6-compatible-let-disallows-variable-redeclaration/) - [ES6 準拠の let で変数の再宣言が許容されなくなりました (影響あり) | Firefox サイト互換性情報](https://www.fxsitecompat.com/ja/docs/2014/es6-compatible-let-disallows-variable-redeclaration/) These...
Interesting. I've researched similar works before creating this library. I only found [TODO.md](https://github.com/todomd/todo.md) and this spec was too much for [my usecase](https://github.com/azu/inkdrop-github-project-todo-md). So, I've created it as a simple one.
I met similar problems. Currently, typescript-json-schema just ignore merhod definition by https://github.com/YousefED/typescript-json-schema/pull/194. ```ts export type HandlerObject = { prop(props: {}): string }; ``` This output is ```json { "$schema": "http://json-schema.org/draft-07/schema#",...