Skip to content

Commit

Permalink
clr gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhoubk committed Dec 6, 2024
1 parent f83e023 commit 8787cd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 41 deletions.
47 changes: 7 additions & 40 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
*.rbc
capybara-*.html
.bash*
.rspec
/db/*.sqlite3
/db/*.sqlite3-journal
/db/*.sqlite3-[0-9]*
/public/system
/coverage/
/spec/tmp
*.orig
rerun.txt
pickle-email-*.html

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
Expand All @@ -29,6 +15,8 @@ config/master.key
# TODO Comment out this rule if environment variables can be committed
.env

.bash*

## Environment normalization:
/.bundle
/vendor/bundle
Expand All @@ -38,26 +26,9 @@ config/master.key
# these should all be checked in to normalize the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset

# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc

# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json

# Ignore pow environment settings
.powenv

# Ignore Byebug command history file.
.byebug_history

# Ignore Bash history file.
.bash_history

# Ignore Yarn folder settings
.yarn

# Ignore node_modules
node_modules/

Expand All @@ -68,12 +39,14 @@ node_modules/

# Ignore yarn files
/yarn-error.log
/.yarnrc
yarn-debug.log*
yarn.lock
.yarn
.yarn-integrity

# Ignore uploaded files in development
/storage/*
!/storage/.keep
# Ignore .npm files
/.npm

# Build/test artifacts
/artifacts/
Expand All @@ -83,14 +56,8 @@ solr/*/data/*

# Vite Ruby
/public/vite*
node_modules
# Vite uses dotenv and suggests to ignore local-only env files. See
# https://vitejs.dev/guide/env-and-mode.html#env-files
*.local

# Ignore yarn files
yarn.lock
/.yarnrc

# Ignore .npm files
/.npm
2 changes: 1 addition & 1 deletion .simplecov
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ SimpleCov.start 'rails' do
add_filter %w[/app/channels/ /app/jobs/ /bin/ /db/]
coverage_dir 'artifacts'
formatter SimpleCov::Formatter::RcovFormatter
minimum_coverage 100
minimum_coverage 70
end

0 comments on commit 8787cd5

Please sign in to comment.