mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-01-19 18:14:45 +00:00
20 lines
380 B
JavaScript
20 lines
380 B
JavaScript
|
|
module.exports = {
|
||
|
|
"env": {
|
||
|
|
"browser": true,
|
||
|
|
"es6": true,
|
||
|
|
"node": true
|
||
|
|
},
|
||
|
|
"extends": "eslint:recommended",
|
||
|
|
"globals": {
|
||
|
|
"Atomics": "readonly",
|
||
|
|
"SharedArrayBuffer": "readonly"
|
||
|
|
},
|
||
|
|
"parserOptions": {
|
||
|
|
"ecmaVersion": 2018,
|
||
|
|
"sourceType": "module"
|
||
|
|
},
|
||
|
|
"rules": {
|
||
|
|
"no-unused-vars" : "off",
|
||
|
|
}
|
||
|
|
};
|