Last active
April 26, 2017 07:08
-
-
Save cyrildiagne/ed533902800e8315faafd97675575c5c to your computer and use it in GitHub Desktop.
Setup Atom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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