mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-12-15 07:40:01 +08:00
17 lines
254 B
JavaScript
17 lines
254 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: "eslint:recommended",
|
||
|
globals: {
|
||
|
Atomics: "readonly",
|
||
|
SharedArrayBuffer: "readonly"
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018
|
||
|
},
|
||
|
rules: {}
|
||
|
};
|