mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-22 06:36:36 +00:00
28 lines
512 B
JavaScript
28 lines
512 B
JavaScript
module.exports = {
|
|
ignorePatterns: [
|
|
'bench',
|
|
'deps/encoding'
|
|
],
|
|
extends: [
|
|
'standard',
|
|
'eslint:recommended',
|
|
'plugin:n/recommended'
|
|
],
|
|
rules: {
|
|
'no-unused-vars': [1, { vars: 'all', args: 'none' }],
|
|
'n/no-missing-require': 1,
|
|
'no-constant-condition': 'off',
|
|
'no-var': 'off',
|
|
'no-redeclare': 1,
|
|
'no-fallthrough': 1,
|
|
'no-control-regex': 1,
|
|
'no-empty': 'off',
|
|
'prefer-const': 'off'
|
|
},
|
|
env: {
|
|
node: true,
|
|
mocha: true,
|
|
es6: true
|
|
}
|
|
}
|