47 lines
782 B
Plaintext
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",
|
|
"*~"
|
|
]
|
|
} |