Skip to content

Instantly share code, notes, and snippets.

@JesusLeon
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JesusLeon/9fd10c2e8f0bc50456d1 to your computer and use it in GitHub Desktop.
Save JesusLeon/9fd10c2e8f0bc50456d1 to your computer and use it in GitHub Desktop.
Atom Packages
# Install linter
apm install lint
# Client-side linters
apm install linter-csslint,linter-htmlhint,linter-jshin,linter-jsonlintt
# Markup linters
apm install linter-js-yaml,linter-xmllint
# Php linters
apm install linter-php,linter-phpcs,linter-phpmd
# Project manager
apm install project-manager
# EXTRA:
# if you want jump-to-declaration functionality in Atom for more languages
# such as Php, please install ctags
brew install ctags #osx
cd {path-to-project-root}
ctags -R .
echo "tags" >> .gitignore #you may want to ignore the tags file
@JesusLeon
Copy link
Author

ℹ️ For some packages, such as the php-linters, you'll probably need extra tools. Please refer to the README of each package for further information.

You can search and find info about packages here: https://atom.io/packages/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment