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
# This comment should be removed
FROM ubuntu:22.04

# TODO: pin exact version
RUN apt-get update

ENV GREETING="Hello # not a comment"
LABEL description="Test image # metadata"

# hadolint ignore=DL3008
RUN apt-get install -y curl

COPY . /app
CMD ["./app"]