Skip to content

Instantly share code, notes, and snippets.

@janzenz
Created March 13, 2017 07:31
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 janzenz/7d257ef7e9a56f81620cd38775015159 to your computer and use it in GitHub Desktop.
Save janzenz/7d257ef7e9a56f81620cd38775015159 to your computer and use it in GitHub Desktop.
ESLint for Meteor + React Development
{
"env": {
"browser": true,
"es6": true
},
"parser": "babel-eslint",
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment