Files
bio-concept-pharma/web/js/.eslintrc.js
2019-11-17 19:14:07 +01:00

27 lines
586 B
JavaScript

// http://eslint.org/docs/user-guide/configuring
module.exports = {
env: {
browser: true,
},
globals: {
google: true,
document: true,
navigator: false,
window: true,
},
root: true,
extends: 'airbnb',
plugins: [
'html',
],
rules: {
'indent': ['error', 4, {'SwitchCase': 1}],
'no-use-before-define': 0,
'function-paren-newline': ['off', 'never'],
'object-curly-spacing': ['error', 'never'],
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
}
};