Socket
Socket
Sign inDemoInstall

eslint-plugin-return-types-object-literals

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    eslint-plugin-return-types-object-literals

Ensures explicit return types on functions and lambdas that return object literals.


Version published
Weekly downloads
224
increased by19.15%
Maintainers
1
Install size
277 kB
Created
Weekly downloads
 

Readme

Source

ESLint Rule: return-types-object-literals/require-return-types-for-object-literals

Requires return types on lambdas that return object literals.

Installation

npm install --save-dev eslint-plugin-return-types-object-literals

.eslintrc.yaml:

root: true
parser: "@typescript-eslint/parser"
parserOptions:
  project: "./tsconfig.json"
plugins:
  - "@typescript-eslint"
  - "return-types-object-literals" # ← Add this
rules:
  # ↓ And this:
  "return-types-object-literals/require-return-types-for-object-literals": error

Examples

const a = () => ({
  // Error: "Return type missing"
  propA: true,
  propB: true
});

const b = () => {
  // Error: "Return type missing"
  return {
    propA: true,
    propB: true
  };
};

const a2 = (): Foo => ({
  // OK
  propA: true,
  propB: true
});

const b2 = (): Foo => {
  // OK
  return {
    propA: true,
    propB: true
  };
};

const c = () => {
  // OK
  const result = {
    propA: true,
    propB: true
  };

  return result;
};

Benefits

Ensures excess property checking is performed on objects returned by lambdas.

type Foo = { a: boolean }

function foo(callback: () => Foo): void {
  ...
}

foo(() => ({
  a: true,
  b: false // No compile error (BAD!)
}))

foo((): Foo => ({
  a: true,
  b: false // Compile error (GOOD!)
}))
Why does this occur?

Without a return type, the lambda's return type will be inferred to be a supertype of the type you actually want. This means no excess property checking will occur, as the inferred return type will automatically contain every property you specify. The resulting lambda instance will then be silently assignable to any lambda variable whose return type is a subtype, since lambda return types are covariant.

In the example above, the first lambda instance (line 7) is inferred as type () => Foo & { b: boolean }, which is subsequently assigned to the variable callback: () => Foo on line 3, which is allowed because Foo & { b: boolean } is a supertype of Foo. In line 12 we fix this by preventing TypeScript from inferring a supertype.

Credits

The following article was very useful when writing this plugin:

Writing custom TypeScript ESLint rules: How I learned to love the AST

License

MIT

FAQs

Last updated on 11 Apr 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc