From dbc536ccc7fa83bea97bc1231d6a9d0f88955e01 Mon Sep 17 00:00:00 2001 From: Dominik Ferber Date: Wed, 2 Mar 2016 18:41:59 +0100 Subject: [PATCH] docs(GUIDES): add minimal eslint configuration example --- docs/guides/setup.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/guides/setup.md b/docs/guides/setup.md index 2706958873..d801f4f54f 100644 --- a/docs/guides/setup.md +++ b/docs/guides/setup.md @@ -5,3 +5,23 @@ *It should further show how to use only selected rules (or link to the page of the ESLint documentation)* TODO + + +Minimal configuration should look like this: + +```js +{ + "env": { + "es6": true, + "browser": true, + "node": true, + "meteor": true + }, + "plugins": [ + "meteor" + ] + "extends": [ + 'plugin:meteor/recommended', + ] +} +```