runet-censorship-bypass/extensions/chromium/.eslintrc.js
2017-01-11 15:48:08 +00:00

29 lines
559 B
JavaScript

module.exports = {
"extends": ["google"],
"plugins": [
//"hapi"
],
"env": {
"browser": true,
"webextensions": true,
"es6": true
},
"globals": {
"chrome": true
},
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2017,
"ecmaFeatures": {
"impliedStrict": false
}
},
"rules": {
"strict": ["error", "global"],
"no-console": "off",
"padded-blocks": "off",
"require-jsdoc": "off"
//"hapi/hapi-scope-start": ["warn"]
}
};