From 195a7aa1c2a0e05493f5314e9275ccc03c68d4f1 Mon Sep 17 00:00:00 2001 From: Alexandre Paradis Date: Fri, 8 Jan 2021 04:33:40 -0500 Subject: [PATCH] Ignore files that are not SVGs in the icons folder (#4672) --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 445aef3d..bfb03d99 100644 --- a/.gitignore +++ b/.gitignore @@ -45,5 +45,9 @@ node_modules/ /vendor/bundle # Files generated by build script -icons/*.js /index.js + +# Ignore all files in the icons folder +icons/* +# Except SVG files +!icons/*.svg