Skip to content

Commit

Permalink
Revert "Remove unnecessarily overwritten config"
Browse files Browse the repository at this point in the history
This reverts commit cb281aa.
  • Loading branch information
segayuu committed Apr 13, 2018
1 parent cb281aa commit 1780828
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = {
'no-multi-str': 'error',
'no-native-reassign': 'error',
'no-new-wrappers': 'error',
'no-redeclare': 'error',
'no-return-assign': 'error',
'no-throw-literal': 'error',
'no-unused-expressions': ['error', {
Expand All @@ -32,7 +33,10 @@ module.exports = {
'no-with': 'error',
'radix': 'error',
'no-self-compare': 'error',
'no-unused-vars': ['error', { args: 'none' }],
'no-unused-vars': ['error', {
vars: 'all',
args: 'none'
}],
'indent': ['error', 2, {
SwitchCase: 1
}],
Expand All @@ -45,6 +49,7 @@ module.exports = {
'brace-style': ['error', '1tbs', {
allowSingleLine: true
}],
'no-mixed-spaces-and-tabs': 'error',
'no-multiple-empty-lines': 'error',
'no-multi-str': 'error',
'one-var': ['error', {
Expand Down Expand Up @@ -87,6 +92,7 @@ module.exports = {
returnAssign: false,
nestedBinaryExpressions: false
}],
'no-unsafe-negation': 'error',
'array-callback-return': 'error',
'no-empty-pattern': 'error',
'no-eval': 'error',
Expand Down

0 comments on commit 1780828

Please sign in to comment.