Begin chapter

- Ignore web files
This commit is contained in:
Tony Bark 2025-02-27 04:47:31 -05:00
parent c2b2dd7fb9
commit 0b99249618
2 changed files with 67 additions and 24 deletions

63
.gitignore vendored
View file

@ -1,18 +1,7 @@
# ---> VisualStudioCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,macos,windows,web
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,linux,macos,windows,web
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
# ---> Linux
### Linux ###
*~
# temporary files which can be created if a process still has a handle open of a deleted file
@ -27,14 +16,15 @@
# .nfs files are created when an open file is removed but is still being accessed
.nfs*
# ---> macOS
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
Icon
# Thumbnails
._*
@ -55,7 +45,45 @@ Network Trash Folder
Temporary Items
.apdisk
# ---> Windows
### macOS Patch ###
# iCloud generated files
*.icloud
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
### VisualStudioCode Patch ###
# Ignore all local history of files
.history
.ionide
### Web ###
*.asp
*.cer
*.csr
*.css
*.htm
*.html
*.js
*.jsp
*.php
*.rss
*.wasm
*.wat
*.xhtml
### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
@ -81,3 +109,4 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,macos,windows,web