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', + ] +} +```