node-ldapjs/.eslintrc.js

21 lines
322 B
JavaScript
Raw Normal View History

module.exports = {
env: {
commonjs: true,
es2021: true,
node: true
},
2023-02-21 18:28:58 +00:00
parserOptions: {
ecmaVersion: 'latest'
},
extends: [
'standard'
],
rules: {
2020-12-06 17:09:37 +00:00
'no-shadow': 'error',
2020-12-07 01:26:27 +00:00
'no-unused-vars': ['error', {
argsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_'
}]
}
}