Commit ff73f16b authored by Kevin Lacker's avatar Kevin Lacker Committed by Dan Abramov
Browse files

a bit of lint-relaxing (#44)

parent c11b5c26
Showing with 2 additions and 2 deletions
+2 -2
......@@ -136,7 +136,7 @@ module.exports = {
'no-native-reassign': ERROR,
'no-negated-in-lhs': ERROR,
'no-nested-ternary': WARNING,
'no-new': ERROR,
'no-new': WARNING,
'no-new-func': ERROR,
'no-new-object': ERROR,
'no-new-symbol': ERROR,
......@@ -171,7 +171,7 @@ module.exports = {
'no-unsafe-finally': WARNING,
'no-unused-expressions': ERROR,
'no-unused-labels': ERROR,
'no-unused-vars': [ERROR, { vars: 'local', args: 'after-used' }],
'no-unused-vars': [ERROR, { vars: 'local', args: 'none' }],
'no-use-before-define': [ERROR, 'nofunc'],
'no-useless-computed-key': ERROR,
'no-useless-concat': ERROR,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment