forked from mirror/MCSM-Daemon
18 lines
270 B
JavaScript
Executable File
18 lines
270 B
JavaScript
Executable File
// .eslintrc.js
|
|
module.exports = {
|
|
env: {
|
|
commonjs: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: "eslint:recommended",
|
|
globals: {
|
|
Atomics: "readonly",
|
|
SharedArrayBuffer: "readonly"
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2018
|
|
},
|
|
rules: {}
|
|
};
|