Skip to content

Commit

Permalink
Grass
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinDFuller committed Aug 25, 2023
1 parent ed8af65 commit 3ae2574
Show file tree
Hide file tree
Showing 6 changed files with 341 additions and 299 deletions.
12 changes: 6 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
env: {
browser: true,
es2024: true,
worker: true,
},
extends: "justindfuller",
env: {
browser: true,
es2024: true,
worker: true,
},
extends: "jsfmt",
};
6 changes: 6 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ func main() {
continue
}

if strings.HasPrefix(entry.Name(), "node_modules") {
log.Printf("Skipping dot file: %s", entry.Name())

continue
}

files = append(files, File{
Path: "/" + entry.Name(),
Dir: entry.IsDir(),
Expand Down
Loading

0 comments on commit 3ae2574

Please sign in to comment.