From 1e3848149988786a797d395f8f228e9b15bf055c Mon Sep 17 00:00:00 2001 From: yndu13 Date: Thu, 16 May 2024 11:48:55 +0800 Subject: [PATCH] chore: update .gitignore --- .gitignore | 53 ++++++++++++++++++++++++++--------------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index 93afc58860..9ff7a87327 100644 --- a/.gitignore +++ b/.gitignore @@ -1,33 +1,32 @@ -.idea/ +# OS .DS_Store -.history/ -.nyc_output/ + +# IDE .vscode/ -*.lock -*.sum -*.log -vendor/ -*.iml -target/ -.settings/ -.classpath +.idea +.settings .project .history/ -coverage.html -coverage.out -node_modules/ -libraries/ -**/.libraries.json -*.sh -**/bin/ -**/obj/ -**/csharp/**/.vs/ -**/dist/ -*.tgz -test* -.php_cs.cache -.env -**/python/**/__pycache__ -*.nupkg +# Node.js dependencies +node_modules/ package-lock.json + +# Generate output +.nuxt +dist + +# Optional npm cache and logs +.npm +.npmrc +npm-debug.log* +yarn-debug.log* + +# nyc test coverage +.nyc_output/ +coverage +test/config.js + +# ENV files +.env +.env.*.local