mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-17 19:26:23 +00:00
19 lines
374 B
JavaScript
19 lines
374 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: 'eslint:recommended',
|
|
overrides: [],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
},
|
|
rules: {
|
|
'no-unsafe-negation': 'off',
|
|
'no-prototype-builtins': 'off',
|
|
'no-useless-escape': 'off',
|
|
},
|
|
}
|