Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-define-config

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-define-config - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

src/rules/eslint/no-constant-binary-expression.d.ts

33

package.json
{
"name": "eslint-define-config",
"version": "1.4.0",
"version": "1.4.1",
"description": "Provide a defineConfig function for .eslintrc.js files",

@@ -43,9 +43,10 @@ "main": "src/index.js",

"@intlify/eslint-plugin-vue-i18n": "~1.4.1",
"@types/eslint": "~8.4.1",
"@types/node": "~17.0.25",
"@types/prettier": "~2.6.0",
"@typescript-eslint/eslint-plugin": "~5.20.0",
"@typescript-eslint/parser": "~5.20.0",
"@types/eslint": "~8.4.2",
"@types/json-schema": "~7.0.11",
"@types/node": "~17.0.33",
"@types/prettier": "~2.6.1",
"@typescript-eslint/eslint-plugin": "~5.23.0",
"@typescript-eslint/parser": "~5.23.0",
"change-case": "~4.1.2",
"eslint": "~8.13.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "~8.5.0",

@@ -55,3 +56,3 @@ "eslint-gitignore": "~0.1.0",

"eslint-plugin-inclusive-language": "~2.2.0",
"eslint-plugin-jsdoc": "~39.2.7",
"eslint-plugin-jsdoc": "~39.2.9",
"eslint-plugin-node": "~11.1.0",

@@ -61,17 +62,19 @@ "eslint-plugin-prettier": "~4.0.0",

"eslint-plugin-unicorn": "~42.0.0",
"eslint-plugin-vue": "~8.6.0",
"eslint-plugin-vue-pug": "~0.4.0",
"esno": "~0.14.1",
"eslint-plugin-vue": "~8.7.1",
"eslint-plugin-vue-pug": "~0.4.3",
"esno": "0.14.1",
"json-schema": "~0.4.0",
"json-schema-to-typescript": "~10.1.5",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "~2.3.4",
"typescript": "~4.6.3",
"upper-case-first": "~2.0.2"
"typescript": "~4.6.4",
"upper-case-first": "~2.0.2",
"vue-eslint-parser": "~9.0.1"
},
"packageManager": "pnpm@6.32.9",
"packageManager": "pnpm@7.1.0",
"engines": {
"node": ">= 14.6.0",
"npm": ">= 6.0.0",
"pnpm": ">= 6.32.9"
"pnpm": ">= 7.0.0"
}
}

@@ -92,2 +92,3 @@ import type { AccessorPairsRule } from './accessor-pairs';

import type { NoConstAssignRule } from './no-const-assign';
import type { NoConstantBinaryExpressionRule } from './no-constant-binary-expression';
import type { NoConstantConditionRule } from './no-constant-condition';

@@ -381,2 +382,3 @@ import type { NoConstructorReturnRule } from './no-constructor-return';

NoConstAssignRule &
NoConstantBinaryExpressionRule &
NoConstantConditionRule &

@@ -383,0 +385,0 @@ NoConstructorReturnRule &

@@ -13,2 +13,3 @@ import type { RuleConfig } from '../rule-config';

allowFunctionParams?: boolean;
enforceInClassFields?: boolean;
}

@@ -15,0 +16,0 @@

@@ -35,2 +35,3 @@ import type { AdjacentOverloadSignaturesRule } from './adjacent-overload-signatures';

import type { NoDupeClassMembersRule } from './no-dupe-class-members';
import type { NoDuplicateEnumValuesRule } from './no-duplicate-enum-values';
import type { NoDuplicateImportsRule } from './no-duplicate-imports';

@@ -91,2 +92,3 @@ import type { NoDynamicDeleteRule } from './no-dynamic-delete';

import type { PaddingLineBetweenStatementsRule } from './padding-line-between-statements';
import type { ParameterPropertiesRule } from './parameter-properties';
import type { PreferAsConstRule } from './prefer-as-const';

@@ -165,2 +167,3 @@ import type { PreferEnumInitializersRule } from './prefer-enum-initializers';

NoDupeClassMembersRule &
NoDuplicateEnumValuesRule &
NoDuplicateImportsRule &

@@ -221,2 +224,3 @@ NoDynamicDeleteRule &

PaddingLineBetweenStatementsRule &
ParameterPropertiesRule &
PreferAsConstRule &

@@ -223,0 +227,0 @@ PreferEnumInitializersRule &

@@ -37,2 +37,4 @@ import type { RuleConfig } from '../rule-config';

*
* @deprecated
*
* @see [no-parameter-properties](https://typescript-eslint.io/rules/no-parameter-properties)

@@ -46,2 +48,4 @@ */

*
* @deprecated
*
* @see [no-parameter-properties](https://typescript-eslint.io/rules/no-parameter-properties)

@@ -53,2 +57,4 @@ */

*
* @deprecated
*
* @see [no-parameter-properties](https://typescript-eslint.io/rules/no-parameter-properties)

@@ -55,0 +61,0 @@ */

@@ -21,2 +21,3 @@ import type { ArrayBracketNewlineRule } from './array-bracket-newline';

import type { CustomEventNameCasingRule } from './custom-event-name-casing';
import type { DefineMacrosOrderRule } from './define-macros-order';
import type { DotLocationRule } from './dot-location';

@@ -42,2 +43,3 @@ import type { DotNotationRule } from './dot-notation';

import type { MatchComponentFileNameRule } from './match-component-file-name';
import type { MatchComponentImportNameRule } from './match-component-import-name';
import type { MaxAttributesPerLineRule } from './max-attributes-per-line';

@@ -238,2 +240,3 @@ import type { MaxLenRule } from './max-len';

CustomEventNameCasingRule &
DefineMacrosOrderRule &
DotLocationRule &

@@ -259,2 +262,3 @@ DotNotationRule &

MatchComponentFileNameRule &
MatchComponentImportNameRule &
MaxAttributesPerLineRule &

@@ -261,0 +265,0 @@ MaxLenRule &

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc