Created
November 4, 2024 09:51
-
-
Save woolinsilver/8826809c88396d44d4c3798bbac62d5c to your computer and use it in GitHub Desktop.
SKNUPS .gitignore template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# MacOS | |
############################################################################### | |
.DS_Store | |
############################################################################### | |
# IntelliJ | |
############################################################################### | |
/.idea | |
############################################################################### | |
# Visual Studio Code | |
############################################################################### | |
/.vscode | |
############################################################################### | |
# npm | |
############################################################################### | |
/node_modules | |
############################################################################### | |
# dotenv | |
############################################################################### | |
.env | |
.env.* | |
############################################################################### | |
# Jest | |
############################################################################### | |
/coverage | |
############################################################################### | |
# Terraform | |
############################################################################### | |
**/.terraform/* | |
*.tfstate | |
*.tfstate.* | |
.tf-user-*-key.json | |
############################################################################### | |
# generated | |
############################################################################### | |
/dist | |
/lib | |
/out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment