runet-censorship-bypass/extensions/chromium/.eslintrc.js

29 lines
559 B
JavaScript
Raw Normal View History

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