mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-11-27 23:10:24 +08:00
16 lines
254 B
JavaScript
Executable file
16 lines
254 B
JavaScript
Executable file
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: "eslint:recommended",
|
|
globals: {
|
|
Atomics: "readonly",
|
|
SharedArrayBuffer: "readonly"
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018
|
|
},
|
|
rules: {}
|
|
};
|