eslint-config-ideal
Advanced tools
Comparing version 0.1.0 to 0.2.0
22
index.js
@@ -10,3 +10,3 @@ module.exports = { | ||
"no-cond-assign": 2, | ||
"no-console": 2, | ||
"no-console": 0, | ||
"no-constant-condition": 2, | ||
@@ -50,3 +50,2 @@ "no-continue": 0, | ||
"no-mixed-spaces-and-tabs": [2, false], | ||
"linebreak-style": [0, "unix"], | ||
"no-multi-spaces": 2, | ||
@@ -90,2 +89,3 @@ "no-multi-str": 2, | ||
"no-trailing-spaces": 0, | ||
"no-this-before-super": 0, | ||
"no-throw-literal": 0, | ||
@@ -96,2 +96,3 @@ "no-undef": 2, | ||
"no-underscore-dangle": 2, | ||
"no-unexpected-multiline": 2, | ||
"no-unneeded-ternary": 2, | ||
@@ -114,2 +115,3 @@ "no-unreachable": 2, | ||
"array-bracket-spacing": [2, "never"], | ||
"block-scoped-var": 0, | ||
@@ -122,5 +124,6 @@ "brace-style": [2, "stroustrup"], | ||
"complexity": [0, 11], | ||
"computed-property-spacing": 2, | ||
"computed-property-spacing": [2, "never"], | ||
"consistent-return": 2, | ||
"consistent-this": [2, "self"], | ||
"constructor-super": 0, | ||
"curly": [2, "all"], | ||
@@ -138,3 +141,3 @@ "default-case": 2, | ||
"generator-star-spacing": 0, | ||
"global-strict": [2, "never"], | ||
"global-strict": [0, "never"], | ||
"guard-for-in": 0, | ||
@@ -149,2 +152,11 @@ "handle-callback-err": 0, | ||
}], | ||
"linebreak-style": [0, "unix"], | ||
"lines-around-comment": [2, { | ||
"beforeBlockComment": true, | ||
"beforeLineComment": true, | ||
"allowBlockStart": true, | ||
"allowBlockEnd": false, | ||
"afterBlockComment": false, | ||
"afterLineComment": false | ||
}], | ||
"max-depth": [0, 4], | ||
@@ -191,3 +203,3 @@ "max-len": [0, 80, 4], | ||
}], | ||
"strict": 2, | ||
"strict": [2, "global"], | ||
"use-isnan": 2, | ||
@@ -194,0 +206,0 @@ "valid-jsdoc": [2, { |
{ | ||
"name": "eslint-config-ideal", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "Configuration setup for Eslint", | ||
@@ -5,0 +5,0 @@ "author": "Gyandeep Singh <gyandeeps@gmail.com>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9959
232