Files
scaffoldforge/.gitignore
7000pctAUTO 7c42ab1bf0
Some checks failed
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / test (push) Has been cancelled
fix: resolve CI linting and type checking errors
2026-02-04 06:27:54 +00:00

47 lines
782 B
Plaintext

{
"Python": [
"__pycache__/",
"*.py[cod]",
"*$py.class",
"*.so",
".Python",
"build/",
"dist/",
"*.egg-info/",
".eggs/",
"venv/",
".env"
],
"Node": [
"node_modules/",
"npm-debug.log*",
"yarn-debug.log*",
"yarn-error.log*",
"dist/",
"coverage/"
],
"Go": [
"*.exe",
"*.exe~",
"*.dll",
"*.so",
"*.dylib",
"*.test",
"*.out",
"go.work"
],
"Rust": [
"target/",
"Cargo.lock",
"*.swp",
"*.swo"
],
"General": [
".DS_Store",
".vscode/",
".idea/",
"*.swp",
"*.swo",
"*~"
]
}