@kweli/cs-rest
Version:
Simple authentication and REST calls for OpenText Content Server.
23 lines (22 loc) • 421 B
JavaScript
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true
},
extends: [
'standard'
],
parserOptions: {
ecmaVersion: 12
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-unused-vars': [
'error', {
argsIgnorePattern: '^_'
}
]
}
}