Clean up project

This commit is contained in:
Uy Ha 2021-05-05 20:31:08 +02:00
parent 497c7baeac
commit 22e596f592
2 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View file

@ -122,3 +122,7 @@ package-lock.json
parser.exp
parser.lib
parser.obj
# Rust files
target/**
Cargo.lock

View file

@ -32,8 +32,6 @@ module.exports = grammar({
env_var: $ => seq('$ENV{', repeat1($._literal_variable), '}'),
cache_var: $ => seq('$CACHE{', repeat1($._literal_variable), '}'),
argument: $ => choice(
$.bracket_argument,
$.quoted_argument,