Skip to content

Commit e14d35a

Browse files
committed
Fix by review
1 parent b5eefc4 commit e14d35a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/quickfix.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,7 @@ RUFF LINTER *compiler-ruff*
13691369
よく使用されるコンパイラオプションは、b/g:ruff_makeprg_params 変数を設定するこ
13701370
とで 'makeprg' に追加できる。例: >
13711371
1372-
let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1372+
let b:ruff_makeprg_params = "--max-line-length "..&textwidth
13731373
13741374
グローバルのデフォルトは "--preview" である。
13751375

@@ -1378,7 +1378,7 @@ PYLINT LINTER *compiler-pylint*
13781378
よく使用されるコンパイラオプションは、b/g:pylint_makeprg_params 変数を設定する
13791379
ことで 'makeprg' に追加できる。例: >
13801380
1381-
let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1381+
let b:pylint_makeprg_params = "--max-line-length "..&textwidth
13821382
13831383
グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。
13841384

0 commit comments

Comments
 (0)