language-ignore
Syntax highlighting for 'ignore' files : gitignore, npmignore, dockerignore, prettierignore, ...
Ignore files Package for Atom
Adds syntax highlighting to 'ignore' files.

Supported files
.gitignore: references gitignore and Ignoring-Files.npmignore: works just like a.gitignorereferences.dockerignore: works just like a.gitignorereferences.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.gitignorereferences.eslintignore: works just like a.gitignorereferences.prettierignore: works just like a.gitignorereferences.gcloudignore: supports importing other.gitignorestyle files references
Install
Settings/Preferences > Install > Search for language-ignore
Or
apm install language-ignore
Troubleshooting
If you have problem with the .dockerignore files:
- In your Atom configuration:
Edit>Config... - Add the following lines in the
[core]section:
customFileTypes:
"text.ignore": [
".dockerignore"
]
Example:
"*":
core:
customFileTypes:
"text.ignore": [
".dockerignore"
]