Skip to content

Instantly share code, notes, and snippets.

View danielmmellop's full-sized avatar

Daniel Mello danielmmellop

View GitHub Profile
@danielmmellop
danielmmellop / gist:e4b539eb3ebc7443900148b5c3c93811
Created March 20, 2019 02:03
Use eslint-config-airbnb on Atom
1. Install ESLint locally to your project: > npm install eslint --save-dev.
2. Install eslint-config-airbnb, If using npm 5+, use this shortcut: > npx install-peerdeps --dev eslint-config-airbnb
3. Create a .eslintrc:
{
"extends": "airbnb"
}