Created
May 14, 2016 14:20
-
-
Save rdickert/ab5f1e897b56a1a3dfbeda29252995db to your computer and use it in GitHub Desktop.
Meteor ESLint setup
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
/* Install in a meteor project: | |
* $ meteor npm install --save-dev eslint eslint-plugin-react eslint-plugin-meteor eslint-config-airbnb | |
* | |
* See http://guide.meteor.com/code-style.html | |
* | |
* ES Lint rules: | |
* http://eslint.org/docs/rules/ <- Optionally append the rulename | |
*/ | |
{ | |
"extends": ["airbnb"], | |
"env": {}, | |
"rules": { | |
/** | |
* App Specific Overrides | |
*/ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment