Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@gojob/eslint-config

Package Overview
Dependencies
6
Maintainers
10
Versions
25
Issues
File Explorer

Advanced tools

@gojob/eslint-config

ESLint config for TypeScript projects at Gojob

    5.0.0latest
    GitHub

Version published
Maintainers
10
Weekly downloads
551
decreased by-27.97%

Weekly downloads

Changelog

Source

[5.0.0] - 2022-08-18

  • upgrade eslint-plugin-prettier to v4 and eslint-config-prettier, and merge prettier configs
  • BREAKING: upgrade eslint-plugin-simple-import-sort to v7 and update config
  • upgrade @typescript-eslint monorepo to latest minor
  • upgrade eslint-plugin-import to latest minor

Readme

Source

Gojob ESLint

Feel free to extend our opinionated ESLint configurations.

TypeScript

With the deprecation of TSLint (we'll miss you, buddy), we decided to progressively switch all our linting processes to [ESLint].

Installation

You can extend our default configuration, in your own ESLint configuration:

{ "extends": [ "@gojob/eslint-config/typescript" // or typescript-react ], }

Assuming you already installed typescript...

yarn add --dev eslint @gojob/eslint-config prettier # or npm install --save-dev eslint @gojob/eslint-config prettier

Integration with VSCode

At the present time, the ESLint plugin for VSCode has difficulties parsing/fixing TypeScript. Adding the following configuration to VSCode settings (.vscode/settings.json in your project) solves the problem:

{ "eslint.validate": [ "javascript", "javascriptreact", { "language": "typescript", "autoFix": true }, "typescriptreact" ], "typescript.tsdk": "node_modules/typescript/lib" }

FAQ

Q: I get the following error: Error while loading rule '@typescript-eslint/no-floating-promises': You have used a rule which requires parserServices to be generated. You must therefore provide a value for the "parserOptions.project" property for @typescript-eslint/parser.

A: You need to add json parserOptions: { project: "<my-ts-config>.json" } in your eslint config file, i.e. json parserOptions: { project: "./tsconfig.json" }.

FAQs

Last updated on 18 Aug 2022

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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