Skip to content

Commit

Permalink
chore: allow console
Browse files Browse the repository at this point in the history
Close #1173
  • Loading branch information
honzajavorek committed Dec 27, 2018
1 parent ace07e6 commit cf83d74
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .eslintrc.js
Expand Up @@ -5,13 +5,17 @@ module.exports = {
'node': true
},
rules: {
// Using 'console' is perfectly okay for a Node.js CLI tool and avoiding
// it only brings unnecessary complexity
'no-console': 'off',

// Node 6 does not support dangling commas in function arguments
"comma-dangle": [
"error",
'comma-dangle': [
'error',
{
"arrays": "always-multiline",
"objects": "always-multiline",
"functions": "never"
'arrays': 'always-multiline',
'objects': 'always-multiline',
'functions': 'never'
}
],

Expand Down

0 comments on commit cf83d74

Please sign in to comment.