Files
webextensions-examples/.eslintrc.json
Andy McKay 3bea6540a9 create a find example (#284)
* create a find example

* update as per feedback
2017-09-21 16:58:49 -07:00

23 lines
422 B
JSON

{
"root": true,
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"browser": true,
"es6": true,
"webextensions": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-console": 0,
"no-unused-vars": ["warn", { "vars": "all", "args": "all" } ],
"no-undef": ["warn"],
"no-proto": ["error"],
"prefer-arrow-callback": ["warn"],
"prefer-spread": ["warn"]
}
}