eslint-config-postman
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -39,2 +39,3 @@ const { join } = require('path'), | ||
globals: { | ||
'exec': true, | ||
'app': true, // as part of test bootstrap | ||
@@ -51,2 +52,3 @@ 'expect': true, // as part of test bootstrap | ||
rules: { | ||
'security/detect-child-process': 'off', | ||
'security/detect-non-literal-require': 'off', | ||
@@ -53,0 +55,0 @@ 'security/detect-non-literal-fs-filename': 'off', |
{ | ||
"name": "eslint-config-postman", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Common ESLint rules for Postman", | ||
@@ -5,0 +5,0 @@ "bugs": "https://github.com/postmanlabs/eslint-config-postman/issues", |
@@ -115,6 +115,6 @@ module.exports = { | ||
'padding-line-between-statements': ['error', | ||
{ 'blankLine': 'always', 'prev': ['block', 'block-like', 'for', 'function', 'multiline-expression', 'const', 'let', 'var'], 'next': '*' }, | ||
{ 'blankLine': 'any', 'prev': 'expression', 'next': 'expression' }, | ||
{ 'blankLine': 'always', 'prev': ['block', 'for', 'function', 'multiline-expression', 'const', 'let', 'var'], 'next': '*' }, | ||
{ 'blankLine': 'always', 'prev': '*', 'next': ['break', 'continue', 'multiline-expression', 'multiline-block-like', 'return', 'export', 'const', 'let', 'var'] }, | ||
{ 'blankLine': 'any', 'prev': 'if', 'next': 'if' }, | ||
{ 'blankLine': 'any', 'prev': 'expression', 'next': 'expression' } | ||
{ 'blankLine': 'any', 'prev': 'if', 'next': 'if' } | ||
], | ||
@@ -121,0 +121,0 @@ 'quote-props': ['error', 'as-needed'], |
Sorry, the diff of this file is not supported yet
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
31730
596