Skip to content

Instantly share code, notes, and snippets.

@lehtu
Last active March 12, 2017 00:28
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 lehtu/517d084695cba8dda66132fe97dd5250 to your computer and use it in GitHub Desktop.
Save lehtu/517d084695cba8dda66132fe97dd5250 to your computer and use it in GitHub Desktop.
.eslintrc.json for Meteor projects
{
    "extends": [
      "airbnb",
      "plugin:meteor/recommended"
    ],
    "plugins": [
        "import",
        "meteor"
    ],
    "parser": "babel-eslint",
    "settings": {
      "import/resolver": "meteor"
    },
    "globals": {
      "WebApp": true
    },
    "rules": {
      "no-console": 0,
      "import/no-extraneous-dependencies": 0,
      "import/extensions": ["off", "never"],
      "comma-dangle": ["error", {"functions": "never"}]
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment