Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/ds-102/sp24 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzarrizvi committed Jan 16, 2024
2 parents b8b021c + 9e548e8 commit 0f0b17d
Showing 1 changed file with 32 additions and 8 deletions.
40 changes: 32 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
**/.DS_Store
**/*.ipynb_checkpoints/
_site/*
_staffers/sheets_parser.json
# Not sure what a .gitignore is?
# See: https://git-scm.com/docs/gitignore

# The first files are directly copied from Jekyll's first-party docs on `.gitignore` files:
# https://jekyllrb.com/tutorials/using-jekyll-with-bundler/#commit-to-source-control

# Ignore the default location of the built site, and caches and metadata generated by Jekyll
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata

# Ignore folders generated by Bundler
.bundle/
vendor/

# These next files are used by Just the Docs developers. They are not necessary for end users of the theme, only developers.

# We use Stylelint and Prettier, JavaScript tools, to lint and format our own code.
# We use Node.js as our runtime, so we ignore node_modules
node_modules

# .DS_Store is a macOS-only metadata file about directories. Convention is to not commit them.
# See: https://en.wikipedia.org/wiki/.DS_Store
.DS_Store
.*.swp
.*.swo
DS_Store
.bundle

# .ipynb_checkpoints are directories created when a .ipynb file is created. They are local files, so they shouldn't be committed.
.ipynb_checkpoints

# These are legacy globs that typically target Ruby theme developers. We may change these at a later date.
*.gem
.bundle
.ruby-version

0 comments on commit 0f0b17d

Please sign in to comment.