disable built in linter for typescript #1132

This commit is contained in:
Paul Gauthier 2024-09-03 12:28:08 -07:00
parent 8eda666672
commit 53fefa0246

View file

@ -198,6 +198,10 @@ def basic_lint(fname, code):
if not lang:
return
# Tree-sitter linter is not capable of working with typescript #1132
if lang == "typescript":
return
parser = get_parser(lang)
tree = parser.parse(bytes(code, "utf-8"))