mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-22 22:45:42 -06:00
18 lines
376 B
JavaScript
18 lines
376 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
node: true,
|
||
|
jest: true,
|
||
|
},
|
||
|
extends: "eslint:recommended",
|
||
|
rules: {
|
||
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: 'babel-eslint',
|
||
|
ecmaVersion: 6,
|
||
|
sourceType: 'module'
|
||
|
}
|
||
|
}
|