normalize-syntax-rules 0.3.2

Syntax-based linting rules with tree-sitter queries
Documentation
1
2
3
4
5
6
7
8
9
with open("data.txt") as f:
    data = f.read()

with open("log.txt", "w") as log:
    log.write("hello")

# Not open() calls
x = close("something")
y = read("file")