Wataru Ashihara

Results 12 issues of Wataru Ashihara

In `=` syntax, - double quotes (`"`) - back slashes (`\`) - non-ascii characters are [escaped in `json.dumps`](https://github.com/jakubroztocil/httpie/blob/1.0.3/httpie/client.py#L137): ```sh $ http -v httpbin.org/post \ dquote='\"' \ multi-line='line 1\nline 2' \...

help wanted

HAVE_SYS_SYSMACROS_H is always true if MAJOR_IN_SYSMACROS. This way of checking is recommended in autoconf 2.70 documentation: https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blobdiff;f=doc/autoconf.texi;h=4f041bd4e;hp=9ad7dc1c5f02c8ba25b2fe1218bf931c7113a5d5;hb=e17a30e987d7ee695fb4294a82d987ec3dc9b974;hpb=565a6dc50cfa01cec2fb4db894026689cdf4970c NOTE: currently https://www.gnu.org/software/autoconf/manual/autoconf.html is the doc for autoconf 2.69.

Hi, thank you for creating this great software! I think reviewdog is too quiet about logging, making it hard to solve issues. For instance, in `-reporter=github-pr-check`, `CI_COMMIT` must be complete...

help wanted

With the following diff, reviewdog parses `\ndif` as [`tokenDiff`](https://github.com/reviewdog/reviewdog/blob/master/diff/parse.go#L214) and treats this diff as [`ErrNoHunks`](https://github.com/reviewdog/reviewdog/blob/master/diff/parse.go#L115) (without showing the error, see #950). ```diff diff --git a/z b/z new file mode 100644...

diff in `reviewdog -diff="$(echo invalid diff)"` is treated as [`ErrNoHunks`](https://github.com/reviewdog/reviewdog/blob/master/diff/parse.go#L115), but reviewdog outputs no error. I expect a parsing error to be printed. (Note that this diff is parsed incorrectly...

`[37m` is originally called "white". - https://www.ecma-international.org/publications/standards/Ecma-048.htm - https://www.google.com/search?q=ANSI+X3.64+gray+white

```sh # colA,colB # aaaaa...aaaaa zzzzz...zzzzz \ # ... } 10 or 100 rows # aaaaa...aaaaa zzzzz...zzzzz / # # \___________/ \___________/ # 1000chars 1000chars # 10 rows # ","...

feature
framework

In the two commands below, both shows the same JSON. ```sh $ http -v httpbin.org/post a:='"あ"' ... { "a": "あ" } ... $ echo '{"a": "あ"}' | http -v httpbin.org/post...

bug
new

When this package is used, we can't exit `node --inspect[-*]` debug server with ctrl-C, or kill it with SIGTERM. This is due to https://github.com/tapjs/signal-exit/issues/71. ```sh 1$ # terminal 1: debug...