Remove inline comments

Only lines that begin with a `#` are treated as comments[1].

[1]: https://git-scm.com/docs/gitignore#_pattern_format
This commit is contained in:
caminad 2022-11-20 21:03:41 +00:00 committed by GitHub
parent e5323759e3
commit 5059f5c825
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -16,9 +16,11 @@ doc/api/
# Avoid committing generated Javascript files: # Avoid committing generated Javascript files:
*.dart.js *.dart.js
*.info.json # Produced by the --dump-info flag. # Produced by the --dump-info flag:
*.js # When generated by dart2js. Don't specify *.js if your *.info.json
# project includes source files written in JavaScript. # When generated by dart2js. Don't specify *.js if your project includes source
# files written in JavaScript.
*.js
*.js_ *.js_
*.js.deps *.js.deps
*.js.map *.js.map

View File

@ -1,6 +1,7 @@
# Swap # Swap
[._]*.s[a-v][a-z] [._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files # comment out the next line if you don't need vector files
!*.svg
[._]*.sw[a-p] [._]*.sw[a-p]
[._]s[a-rt-v][a-z] [._]s[a-rt-v][a-z]
[._]ss[a-gi-z] [._]ss[a-gi-z]