2022-03-16 11:10:30 +03:00
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
|
|
const config = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
es2021: true,
|
|
|
|
node: true,
|
|
|
|
commonjs: true
|
|
|
|
},
|
|
|
|
extends: ['eslint:recommended', 'prettier'],
|
|
|
|
rules: {
|
|
|
|
camelcase: [
|
|
|
|
1,
|
|
|
|
{
|
|
|
|
properties: 'always'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'no-var': 'error',
|
|
|
|
'no-alert': 'error',
|
2022-04-04 19:00:24 +03:00
|
|
|
eqeqeq: 'error',
|
|
|
|
'prefer-const': 'warn',
|
|
|
|
'object-shorthand': 'warn'
|
2022-03-16 11:10:30 +03:00
|
|
|
},
|
2022-04-13 10:21:24 +03:00
|
|
|
ignorePatterns: ['node_modules', 'dist', 'public', 'events.json', '.mocharc.js']
|
2022-03-16 11:10:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = config
|