mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 02:13:43 +03:00
25 lines
478 B
JavaScript
25 lines
478 B
JavaScript
module.exports = {
|
|
"extends": ["airbnb"],
|
|
"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"
|
|
}
|
|
};
|