update ignores

This commit is contained in:
matthieu42morin 2024-04-28 13:53:24 +02:00
parent e2794dae17
commit a9ce9291e5
4 changed files with 44 additions and 14 deletions

19
.dockerignore Normal file
View File

@ -0,0 +1,19 @@
Dockerfile
.dockerignore
.git
.gitignore
.gitattributes
README.md
.npmrc
.prettierrc
.eslintrc.cjs
.graphqlrc
.editorconfig
.svelte-kit
.vscode
node_modules
build
package
**/.env
**/dist
*.local

13
.eslintignore Normal file
View File

@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
*.local
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock

7
.gitignore vendored
View File

@ -4,15 +4,20 @@ src/routes/**/+page.md
src/static src/static
urara.js urara.js
# build
+ .turbo + .turbo
+ build/** + build/**
+ dist/** + dist/**
dist dist
dist-ssr dist-ssr
build
static
.svelte-kit
.netlify
.vercel
.DS_Store .DS_Store
node_modules node_modules
/build
/.svelte-kit /.svelte-kit
/package /package
/lambda/ /lambda/

View File

@ -1,14 +1,7 @@
.DS_Store .svelte-kit/**
node_modules static/**
/build build/**
/.svelte-kit node_modules/**
/package
.env
.env.*
!.env.example
*.local
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml pnpm-lock.yaml
package-lock.json .netlify/**
yarn.lock .vercel_build_output/**