Skip to content

ldez/atom-language-ignore

Repository files navigation

Ignore files Package for Pulsar/Atom

Build status (Windows) MIT License

language-ignore

Adds syntax highlighting to 'ignore' files.

language-ignore-gitignore

Supported 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

Install

Settings/Preferences > Install > Search for language-ignore

Or

pulsar -p install language-ignore

Troubleshooting

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"
      ]