Skip to content

Commit

Permalink
feat: v5.5.0 ~ v5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jinwoo-kim-nhn committed Sep 13, 2018
1 parent 765e8a8 commit 5144b49
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions rules/best-practices.js
Expand Up @@ -46,6 +46,7 @@ module.exports = {
'no-return-assign': [2, 'always'],
'no-script-url': 2,
'no-self-compare': 2,
'no-self-assign': [2, {'props': true}],
'no-sequences': 2,
'no-throw-literal': 2,
'no-unsafe-finally': 2,
Expand Down
1 change: 1 addition & 0 deletions rules/errors.js
Expand Up @@ -27,6 +27,7 @@ module.exports = {
'no-obj-calls': 2,
'no-prototype-builtins': 0,
'no-regex-spaces': 2,
'no-misleading-character-class': 2,
'no-sparse-arrays': 2,
'no-template-curly-in-string': 2,
'no-unexpected-multiline': 2,
Expand Down
2 changes: 2 additions & 0 deletions rules/es6.js
Expand Up @@ -20,6 +20,7 @@ module.exports = {
'no-useless-computed-key': 2,
'no-useless-rename': 2,
'no-var': 2,
'no-async-promise-executor': 2,
'object-shorthand': [2, 'always', {'avoidQuotes': true}],
'prefer-arrow-callback': [2, {'allowUnboundThis': false, 'allowNamedFunctions': true}],
'prefer-const': [2, {'destructuring': 'any', 'ignoreReadBeforeAssign': true}],
Expand All @@ -32,6 +33,7 @@ module.exports = {
'prefer-template': 2,
'require-await': 2,
'require-yield': 2,
'require-atomic-updates': 2,
'rest-spread-spacing': [2, 'never'],
'sort-imports': 0,
'symbol-description': 0,
Expand Down
2 changes: 2 additions & 0 deletions rules/style.js
Expand Up @@ -32,6 +32,7 @@ module.exports = {
'max-nested-callbacks': [2, 3],
'max-params': [2, 5],
'max-statements': 0,
'max-lines-per-function': 0,
'multiline-ternary': 0,
'new-cap': 2,
'new-parens': 2,
Expand Down Expand Up @@ -69,6 +70,7 @@ module.exports = {
'quote-props': 0,
'quotes': [2, 'single', {'avoidEscape': true, 'allowTemplateLiterals': true}],
'require-jsdoc': 1,
'require-unicode-regexp': 0,
'semi': 2,
'semi-spacing': [2, {'before': false, 'after': true}],
'semi-style': [2, 'last'],
Expand Down

0 comments on commit 5144b49

Please sign in to comment.