Skip to content

Commit

Permalink
Update .gitignore and .eslintignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kvestus committed Feb 24, 2024
1 parent 66b4b4a commit 4fb0b58
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Docker compose project name
COMPOSE_PROJECT_NAME=languages_learner

# Auth data for cypress tests
TEST_USER_USERNAME=
TEST_USER_PASSWORD=
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
node_modules
29 changes: 27 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@

# dependencies
node_modules
.DS_Store

# production
dist
dist-ssr

# testing
coverage

# misc
npm-debug.log*
yarn-debug.log*
yarn-error.log*

cypress/videos
cypress/screenshots
.nyc_output

# Ignore local files
.env
*.local
.idea

# Configs
firebase.config.json
Expand All @@ -15,5 +32,13 @@ yarn-error.log
# Cache files
.firebase

# IDE
.DS_Store
.idea
components.d.ts
auto-imports.d.ts

.vscode

# Generated files
auto-generated-imports

0 comments on commit 4fb0b58

Please sign in to comment.