Skip to content

Instantly share code, notes, and snippets.

@cyrildiagne
Last active April 26, 2017 07:08
Show Gist options
  • Save cyrildiagne/ed533902800e8315faafd97675575c5c to your computer and use it in GitHub Desktop.
Save cyrildiagne/ed533902800e8315faafd97675575c5c to your computer and use it in GitHub Desktop.
Setup Atom
brew install clang-format
apm install clang-format
# Atom settings > clang-format settings > set "Fallback Style" to "Google"
# Atom settings > clang-format settings > set "Format on save"
npm install -g eslint eslint-config-google
apm install linter linter-ui-default linter-eslint
# Atom settings > linter-eslint settings > enable "Use global ESLint installation"
# Add file named '.eslintrc.json' at root of project:
# { "extends": "google", "parserOptions": { "ecmaVersion": 6 }, "rules": {}}
sudo -H pip install yapf
apm install python-yapf
# Atom settings > python-yapf settings > check "Check on save" & "Format on save"
apm install docblockr
apm install file-icons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment