Skip to content

Commit

Permalink
patching readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-zhening-luo committed Mar 19, 2024
1 parent 5ad5993 commit ba49b5f
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#############################################
##### .gitignore #####
#############################################
#########################################
##### .gitignore #####
#########################################


#####################
#### v3.0.0 ####
#### v3.0.2 ####
#####################


Expand Down Expand Up @@ -35,7 +35,7 @@
#######################


## Intention: ignore built or packaged files, because they should be re-built and re-packaged when deployed
## Intention: ignore distro folders in root

/dist/
/build/
Expand All @@ -46,7 +46,7 @@



## Intention: ignore local I/O dirs
## Intention: ignore local I/O dirs in root

/input/
/inputs/
Expand All @@ -62,7 +62,7 @@



## Intention: SVELTE: ignore sveltekit helper files generated during dev and build
## Intention: SVELTE: ignore sveltekit helper files generated in root during dev and build

/.svelte-kit/

Expand All @@ -75,19 +75,19 @@
################


## Intention: NODE: ignore locally installed Node packages
## Intention: NODE: ignore locally installed Node packages in any directory

node_modules/



## Intention: VSCODE: ignore IDE settings
## Intention: VSCODE: ignore IDE settings anywhere

.vscode/



## Intention: iOS: ignore iOS filesystem detritus
## Intention: iOS: ignore iOS filesystem detritus anywhere

.Trash/

Expand All @@ -114,21 +114,21 @@ node_modules/
################


## Intention: ignore any app secrets stored in .secret files possibly used for testing; this is bad practice and should never be done anyway
## Intention: ignore app secrets in .secret files anywhere (regardless, storing secrets in plain-text is bad practice)

*.secret
*.secrets



## Intention: ignore any .log files accidentally misplaced or thoughtlessly output in some lower directory, which may contain secrets
## Intention: ignore .log files anywhere

*.log
*.logs



## Intention: ignore any loose I/O artifacts
## Intention: ignore loose I/O artifacts anywhere

*.input
*.inputs
Expand All @@ -137,21 +137,21 @@ node_modules/



## Intention: ignore any non-example .env files
## Intention: ignore non-example .env files anywhere

*.env
*.env.*
!.env.*example



## Intention: ESLINT: ignore eslint caches
## Intention: ESLINT: ignore eslint caches anywhere

*.eslintcache



## Intention: iOS: ignore iOS filesystem detritus
## Intention: iOS: ignore iOS filesystem detritus anywhere

*.icloud

Expand Down

0 comments on commit ba49b5f

Please sign in to comment.