🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@redmindab/eslint-config

Package Overview
Dependencies
Maintainers
2
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@redmindab/eslint-config

Redmind ESlint config

latest
npmnpm
Version
6.2.0
Version published
Maintainers
2
Created
Source

@redmindab/eslint-config

Redmind's internal TypeScript eslint configuration.

📦 Install package and peer dependencies

npm i -D @redmindab/eslint-config && npx install-peerdeps -D @redmindab/eslint-config

🔧 Create config files

create .eslintrc in the root of the project with the following content

{
  "extends": ["@redmindab/eslint-config"],
  "parserOptions": {
    "project": "./tsconfig.json"
  }
}

You can also choose to extend only specific configurations:

{
  "extends": [
    "@redmindab/eslint-config/typescript",
    "@redmindab/eslint-config/react",
    "@redmindab/eslint-config/backend"
  ],
  "parserOptions": {
    "project": "./tsconfig.json"
  }
}

💅 Stylistic formatting w. Prettier

Create a .prettierrc in the root of the project with the following content

Update all files in src directory

npx prettier --write src/**/*.{ts,tsx}
npx eslint --fix src/**/*.{ts,tsx}

FAQs

Package last updated on 13 Feb 2026

Did you know?

Socket

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