mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-14 12:17:48 +00:00
17 lines
278 B
JavaScript
17 lines
278 B
JavaScript
module.exports = {
|
|
env: {
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'standard',
|
|
'eslint:recommended',
|
|
'standard',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
rules: {
|
|
eqeqeq: ['off'],
|
|
'prefer-const': ['off'],
|
|
'arrow-body-style': 'off',
|
|
},
|
|
};
|