mirror of
https://github.com/likeablob/macmini.git
synced 2025-01-01 00:29:21 +00:00
25 lines
410 B
JavaScript
25 lines
410 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: ["eslint:recommended", "plugin:prettier/recommended"],
|
||
|
globals: {
|
||
|
Atomics: "readonly",
|
||
|
SharedArrayBuffer: "readonly"
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018
|
||
|
},
|
||
|
rules: {
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
singleQuote: true,
|
||
|
trailingComma: "es5"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|