From 73a3cc21d0e7ceec1275078db125f57ce97725fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 30 Jan 2020 03:16:48 +0100 Subject: feat: dprint formatter (#3820) * rewrite fmt_test in Rust, remove tools/fmt_test.py * remove //std/prettier --- tools/lint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/lint.py') diff --git a/tools/lint.py b/tools/lint.py index 8d2eaed1e..3ce4d7b02 100755 --- a/tools/lint.py +++ b/tools/lint.py @@ -22,8 +22,8 @@ def eslint(): "eslint") # Find all *directories* in the main repo that contain .ts/.js files. source_files = git_ls_files(root_path, [ - "*.js", "*.ts", ":!:std/prettier/vendor/*", ":!:std/**/testdata/*", - ":!:std/**/node_modules/*", ":!:cli/compilers/*" + "*.js", "*.ts", ":!:std/**/testdata/*", ":!:std/**/node_modules/*", + ":!:cli/compilers/*" ]) source_dirs = set([os.path.dirname(f) for f in source_files]) # Within the source dirs, eslint does its own globbing, taking into account -- cgit v1.2.3