Socket
Socket
Sign inDemoInstall

eslint-plugin-isaacscript

Package Overview
Dependencies
Maintainers
1
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-isaacscript - npm Package Compare versions

Comparing version 3.11.1 to 3.12.0

dist/rules/no-unnecessary-assignment.js

1

dist/configs/recommended.js

@@ -34,2 +34,3 @@ "use strict";

"isaacscript/no-undefined-return-type": "error",
"isaacscript/no-unnecessary-assignment": "error",
"isaacscript/no-unsafe-plusplus": "error",

@@ -36,0 +37,0 @@ "isaacscript/no-void-return-type": "error",

2

dist/constants.js

@@ -21,3 +21,3 @@ "use strict";

"class",
"console",
"console", // Manually added.
"const",

@@ -24,0 +24,0 @@ "continue",

@@ -32,2 +32,3 @@ "use strict";

const no_undefined_return_type_1 = require("./rules/no-undefined-return-type");
const no_unnecessary_assignment_1 = require("./rules/no-unnecessary-assignment");
const no_unsafe_plusplus_1 = require("./rules/no-unsafe-plusplus");

@@ -74,2 +75,3 @@ const no_void_return_type_1 = require("./rules/no-void-return-type");

"no-undefined-return-type": no_undefined_return_type_1.noUndefinedReturnType,
"no-unnecessary-assignment": no_unnecessary_assignment_1.noUnnecessaryAssignment,
"no-unsafe-plusplus": no_unsafe_plusplus_1.noUnsafePlusplus,

@@ -76,0 +78,0 @@ "no-void-return-type": no_void_return_type_1.noVoidReturnType,

@@ -172,3 +172,3 @@ "use strict";

data: {
ordinal: getOrdinalSuffix(i + 1),
ordinal: getOrdinalSuffix(i + 1), // e.g. 0 --> 1st
type1: (0, type_utils_1.getTypeName)(checker, argumentType),

@@ -175,0 +175,0 @@ type2: (0, type_utils_1.getTypeName)(checker, parameterType),

{
"name": "eslint-plugin-isaacscript",
"version": "3.11.1",
"version": "3.12.0",
"description": "An ESLint plugin that contains useful rules.",

@@ -48,5 +48,5 @@ "keywords": [

"dependencies": {
"@typescript-eslint/type-utils": "^6.14.0",
"@typescript-eslint/types": "^6.14.0",
"@typescript-eslint/utils": "^6.14.0"
"@typescript-eslint/type-utils": "^6.17.0",
"@typescript-eslint/types": "^6.17.0",
"@typescript-eslint/utils": "^6.17.0"
},

@@ -53,0 +53,0 @@ "peerDependencies": {

@@ -67,2 +67,3 @@ # eslint-plugin-isaacscript

| [`isaacscript/no-undefined-return-type`](docs/rules/no-undefined-return-type.md) | Disallows `undefined` return types on functions | :white_check_mark: | | :thought_balloon: |
| [`isaacscript/no-unnecessary-assignment`](docs/rules/no-unnecessary-assignment.md) | Disallows useless assignments | :white_check_mark: | | :thought_balloon: |
| [`isaacscript/no-unsafe-plusplus`](docs/rules/no-unsafe-plusplus.md) | Disallow unsafe and confusing uses of the "++" and "--" operators | :white_check_mark: | | :thought_balloon: |

@@ -69,0 +70,0 @@ | [`isaacscript/no-void-return-type`](docs/rules/no-void-return-type.md) | Disallows `void` return types on non-exported functions | :white_check_mark: | :wrench: | |

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