eslint-plugin-decorator-position
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -182,2 +182,5 @@ 'use strict'; | ||
for (const decoratorConfig of options.overrides[PREFER_INLINE]) { | ||
if (!decoratorConfig) { | ||
continue; | ||
} | ||
const config = normalizeConfig(decoratorConfig, INTENT.SAME_LINE); | ||
@@ -210,2 +213,5 @@ const info = decoratorInfo(node, config); | ||
for (const decoratorConfig of options.overrides[ABOVE]) { | ||
if (!decoratorConfig) { | ||
continue; | ||
} | ||
const config = normalizeConfig(decoratorConfig, INTENT.DIFFERENT_LINES); | ||
@@ -212,0 +218,0 @@ const info = decoratorInfo(node, config); |
{ | ||
"name": "eslint-plugin-decorator-position", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "ESLint plugin for enforcing decorator position", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
18293
339