Merge branch 'dev'

This commit is contained in:
Dominik Ferber
2016-03-02 18:42:11 +01:00

View File

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