mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 10:23:43 +03:00
28 lines
554 B
JavaScript
28 lines
554 B
JavaScript
|
module.exports = {
|
||
|
"extends": ["eslint:recommended", "google"],
|
||
|
"plugins": [
|
||
|
//"hapi"
|
||
|
],
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"webextensions": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"globals": {
|
||
|
"chrome": true
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"sourceType": "script",
|
||
|
"ecmaFeatures": {
|
||
|
"impliedStrict": false
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"strict": ["error", "global"],
|
||
|
"no-console": "off",
|
||
|
"padded-blocks": "off",
|
||
|
"require-jsdoc": "off"
|
||
|
//"hapi/hapi-scope-start": ["warn"]
|
||
|
}
|
||
|
};
|