eslint-config-ideal
Advanced tools
Comparing version 0.2.0 to 1.0.0
40
index.js
@@ -8,4 +8,5 @@ module.exports = { | ||
"no-catch-shadow": 2, | ||
"no-comma-dangle": 0, | ||
"no-class-assign": 0, | ||
"no-cond-assign": 2, | ||
"no-const-assign": 2, | ||
"no-console": 0, | ||
@@ -23,3 +24,3 @@ "no-constant-condition": 2, | ||
"no-empty": 2, | ||
"no-empty-class": 2, | ||
"no-empty-character-class": 2, | ||
"no-empty-label": 2, | ||
@@ -32,5 +33,4 @@ "no-eq-null": 2, | ||
"no-extra-boolean-cast": 2, | ||
"no-extra-parens": 0, | ||
"no-extra-parens": 1, | ||
"no-extra-semi": 2, | ||
"no-extra-strict": 2, | ||
"no-fallthrough": 2, | ||
@@ -40,5 +40,7 @@ "no-floating-decimal": 2, | ||
"no-implied-eval": 2, | ||
"no-implicit-coercion": 0, | ||
"no-inline-comments": 0, | ||
"no-inner-declarations": [2, "functions"], | ||
"no-invalid-regexp": 2, | ||
"no-invalid-this": 2, | ||
"no-irregular-whitespace": 2, | ||
@@ -77,3 +79,2 @@ "no-iterator": 2, | ||
"no-regex-spaces": 2, | ||
"no-reserved-keys": 0, | ||
"no-restricted-modules": 0, | ||
@@ -86,3 +87,2 @@ "no-return-assign": 2, | ||
"no-shadow-restricted-names": 2, | ||
"no-space-before-semi": 0, | ||
"no-spaced-func": 2, | ||
@@ -108,2 +108,3 @@ "no-sparse-arrays": 2, | ||
"no-use-before-define": 0, | ||
"no-useless-call": 2, | ||
"no-void": 0, | ||
@@ -116,7 +117,9 @@ "no-var": 0, | ||
"no-with": 2, | ||
"no-wrap-func": 2, | ||
"array-bracket-spacing": [2, "never"], | ||
"arrow-parens": 0, | ||
"arrow-spacing": 0, | ||
"block-scoped-var": 0, | ||
"brace-style": [2, "stroustrup"], | ||
"callback-return": [2, ["callback", "cb", "next"]], | ||
"camelcase": 2, | ||
@@ -141,10 +144,16 @@ "comma-dangle": [2, "never"], | ||
"func-style": [0, "declaration"], | ||
"generator-star": 0, | ||
"generator-star-spacing": 0, | ||
"global-strict": [0, "never"], | ||
"guard-for-in": 0, | ||
"handle-callback-err": 0, | ||
"id-length": [2, { | ||
"min": 3, | ||
"max": 20, | ||
"exceptions": [] | ||
}], | ||
"id-match": 0, | ||
"indent": [2, 4, { | ||
"indentSwitchCase" : true | ||
"SwitchCase": 1, | ||
"VariableDeclarator": 1 | ||
}], | ||
"init-declarations": [0, "always"], | ||
"key-spacing": [2, { | ||
@@ -171,2 +180,3 @@ "beforeColon": false, | ||
"newline-after-var": 1, | ||
"object-curly-spacing": [2, "never"], | ||
"object-shorthand": 0, | ||
@@ -178,5 +188,8 @@ "one-var": 0, | ||
"prefer-const": 0, | ||
"quote-props": 0, | ||
"prefer-reflect": 0, | ||
"prefer-spread": 0, | ||
"quote-props": [2, "consistent-as-needed"], | ||
"quotes": [2, "double"], | ||
"radix": 1, | ||
"require-yield": 0, | ||
"semi": 2, | ||
@@ -188,5 +201,3 @@ "semi-spacing": [2, { | ||
"sort-vars": 0, | ||
"space-after-function-name": [0, "never"], | ||
"space-before-function-parentheses": [0, "always"], | ||
"space-in-brackets": [2, "never"], | ||
"space-before-function-paren": [2, "never"], | ||
"space-in-parens": [2, "never"], | ||
@@ -200,3 +211,2 @@ "space-infix-ops": 2, | ||
"spaced-comment": 0, | ||
"spaced-line-comment": [0, "always"], | ||
"space-after-keywords": [2, "never"], | ||
@@ -203,0 +213,0 @@ "space-before-blocks": [2, "never"], |
@@ -0,0 +0,0 @@ /* global target */ |
{ | ||
"name": "eslint-config-ideal", | ||
"version": "0.2.0", | ||
"version": "1.0.0", | ||
"description": "Configuration setup for Eslint", | ||
@@ -5,0 +5,0 @@ "author": "Gyandeep Singh <gyandeeps@gmail.com>", |
@@ -0,0 +0,0 @@ [![NPM version](https://badge.fury.io/js/eslint-config-ideal.svg)](http://badge.fury.io/js/eslint-config-ideal) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
242
1
9919