Compare commits

...

6 Commits

Author SHA1 Message Date
Ajay Choudhury
501a324e24
Merge e60e5fe039 into d49bd6f0f7 2025-01-18 14:22:44 +00:00
Devin Dooley
d49bd6f0f7
Merge pull request #4289 from csauge/patch-1
Update Python.gitignore for .ruff_cache/
2025-01-17 13:20:13 -08:00
Devin Dooley
e8554d85bf
Merge branch 'main' into patch-1 2025-01-17 13:19:34 -08:00
Christophe Saugé
4f0b7a0694
Update Python.gitignore
Add ruff cache. 
ruff tool: https://github.com/charliermarsh/ruff
ruff is becoming a very popular tool often run in pre-commit and aim to replace Flake8 (plus dozens of plugins), isort, pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while executing tens or hundreds of times faster than any individual tool.
2023-05-01 20:49:13 +02:00
Ajay Choudhury
e60e5fe039
Update gatsby.gitignore 2023-03-13 18:14:37 +05:30
Ajay Choudhury
e80ef88e1b
Add gitignore for Gatsby projects 2023-03-13 18:13:48 +05:30
2 changed files with 104 additions and 0 deletions

101
Gatsby.gitignore Normal file
View File

@ -0,0 +1,101 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
junit.xml
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
jspm_packages/
integration-tests/gatsby-cli/execution-folder/*
*.un~
dist
bin/published.js
# Typescript v1 declaration files
typings/
# Build Path of Test Fixtures
test/**/public
.gatsby-context.js
.DS_Store
public/
node_modules/
e2e-tests/gatsby-pnp/
__diff_output__/
.cache/
.netlify
.Rhistory
# Optional npm cache directory
.npm
# IDE specific
.idea/
.vscode/
*.sw*
# misc
.serverless/
.eslintcache
scripts/.env
# lock files
yarn.lock
package-lock.json
# ignore any lock file other than main lock file
!/yarn.lock
# starters are special; we want to persist the lock files
!starters/*/package-lock.json
.parcel-cache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# dotenv environment variable files
.env*
# Mac files
.DS_Store
# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity

View File

@ -167,5 +167,8 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Ruff stuff:
.ruff_cache/
# PyPI configuration file
.pypirc