mirror of https://github.com/zulip/zulip.git
lint: Make prettier quieter when fixing.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
c65729511a
commit
308883302d
|
@ -93,9 +93,9 @@ def run() -> None:
|
|||
linter_config.external_linter('isort', ['isort'], ['py'],
|
||||
description="Sorts Python import statements",
|
||||
check_arg=['--check-only', '--diff'])
|
||||
linter_config.external_linter('prettier', ['node_modules/.bin/prettier'],
|
||||
linter_config.external_linter('prettier', ['node_modules/.bin/prettier', '--check'],
|
||||
['js', 'ts', 'yaml', 'yml'],
|
||||
check_arg=['--check'], fix_arg=['--write'],
|
||||
fix_arg=['--write'],
|
||||
description="Formats JavaScript and YAML",
|
||||
# https://github.com/prettier/prettier/pull/8703
|
||||
suppress_line=lambda line: line in ["Checking formatting...\n", "All matched files use Prettier code style!\n"])
|
||||
|
|
Loading…
Reference in New Issue