From 41ca2299a571c7d5b3a4410253d54ecf57f6b85d Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Tue, 20 Jul 2021 11:20:21 -0600 Subject: [PATCH] Ignore .tool-versions directory This directory is created by the ASDF version manager (https://asdf-vm.com), and can be used to control the version of nodejs/npm used to run. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 94a8769..fe2c456 100644 --- a/.gitignore +++ b/.gitignore @@ -98,5 +98,9 @@ Thumbs.db __tests__/runner/* # lib/**/* +# IntelliJ IDEA config files .idea/ *.iml + +# ASDF tool configuration +.tool-versions