Adds syntax highlighting to 'ignore' files.
.gitignore
: references gitignore and Ignoring-Files.npmignore
: works just like a.gitignore
references.dockerignore
: works just like a.gitignore
references.coffeelintignore
: works just like a.gitignore
..slugignore
: does not support negated!
patterns. Heroku - Slug Compiler.atomignore
: works just like a.gitignore
. tree-ignore.hgignore
: references hgignore (currently only glop patterns).vscodeignore
: works just like a.gitignore
references.eslintignore
: works just like a.gitignore
references.prettierignore
: works just like a.gitignore
references.gcloudignore
: supports importing other.gitignore
style files references
Settings/Preferences > Install > Search for language-ignore
Or
pulsar -p install language-ignore
If you have problem with the .dockerignore
files:
- In your Pulsar configuration:
Edit
>Config...
- Add the following lines in the
[core]
section:
customFileTypes:
"text.ignore": [
".dockerignore"
]
Example:
"*":
core:
customFileTypes:
"text.ignore": [
".dockerignore"
]