eslint-config-chiper
Advanced tools
Comparing version 1.0.0 to 1.0.1
module.exports = { | ||
'extends': [ | ||
'./rules/best-practices.js', | ||
'./rules/node.js', | ||
'./rules/es6.js', | ||
'./rules/node4.js', | ||
'./rules/style.js' | ||
] | ||
}; |
{ | ||
"name": "eslint-config-chiper", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "node.js", |
@@ -102,27 +102,20 @@ module.exports = { | ||
// disallow parseInt() in favor of binary, octal, and hexadecimal literals | ||
// http://eslint.org/docs/rules/prefer-numeric-literals | ||
'prefer-numeric-literals': 'error', | ||
// use rest parameters instead of arguments | ||
// http://eslint.org/docs/rules/prefer-rest-params | ||
'prefer-rest-params': 'warn', | ||
// suggest using the spread operator instead of .apply() | ||
// http://eslint.org/docs/rules/prefer-spread | ||
'prefer-spread': 'warn', | ||
// suggest using template literals instead of string concatenation | ||
// http://eslint.org/docs/rules/prefer-template | ||
'prefer-template': 'off', | ||
// disallow generator functions that do not have yield | ||
// http://eslint.org/docs/rules/require-yield | ||
'require-yield': 'error', | ||
// enforce spacing between object rest-spread | ||
// http://eslint.org/docs/rules/rest-spread-spacing | ||
'rest-spread-spacing': ['error', 'never'], | ||
// import sorting | ||
// http://eslint.org/docs/rules/sort-imports | ||
'sort-imports': ['off', { | ||
@@ -135,3 +128,2 @@ ignoreCase: false, | ||
// require a Symbol description | ||
// http://eslint.org/docs/rules/symbol-description | ||
'symbol-description': 'error', | ||
@@ -138,0 +130,0 @@ |
9
19137