uncomment 3.4.0

A CLI tool to remove comments from code using tree-sitter for accurate parsing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env fish
# This comment should be removed

set greeting "Hello"
# TODO: support multiple locales
set msg "This # is not a comment"
set url "http://example.com#anchor"

# FIXME: handle empty arguments
function greet
    echo $greeting $argv
end

greet "world"