22 lines
232 B
Plaintext
22 lines
232 B
Plaintext
|
# ignore every file
|
||
|
*.*
|
||
|
|
||
|
# except these file types
|
||
|
!*.html
|
||
|
!*.handlebars
|
||
|
!*.json
|
||
|
!*.yml
|
||
|
!*.svelte
|
||
|
!*.md
|
||
|
!*.ts
|
||
|
!*.js
|
||
|
|
||
|
# but ignore stuff from .gitignore
|
||
|
node_modules
|
||
|
.nyc_output
|
||
|
/src/**/*.js
|
||
|
/mocks/**/*.js
|
||
|
/frontend
|
||
|
/test-paths
|
||
|
/out
|