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

@sajari/eslint-config

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sajari/eslint-config

A ESLint configuration for use in Sajari TypeScript projects.

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
5
Created
Source

@sajari/eslint-config

A Sajari-specific ESLint configuration for JavaScript, TypeScript & React projects.

This config extends

Setup

1. Install

yarn add babel-eslint@^10.1.0 \
        eslint@^7.16.0 \
        eslint-plugin-import@^2.22.1 \
        eslint-plugin-jsx-a11y@^6.4.1 \
        eslint-plugin-prettier@^3.3.0 \
        eslint-plugin-react@^7.22.0 \
        eslint-plugin-react-hooks@^4.2.0 \
        eslint-plugin-simple-import-sort@^7.0.0 \
        prettier@^2.2.1 \
        prettier-eslint@12.0.0 \
        @typescript-eslint/eslint-plugin@^4.4.1 \
        --dev

Or if you don't need React support...

yarn add babel-eslint@^10.1.0 \
        eslint@^7.16.0 \
        eslint-plugin-import@^2.22.1 \
        eslint-plugin-prettier@^3.3.0 \
        eslint-plugin-simple-import-sort@^7.0.0 \
        prettier@^2.2.1 \
        prettier-eslint@12.0.0 \
        --dev
{
    "extends": "@sajari/eslint-config/base"
}

2. Configure ESLint

Add "extends": "@sajari/eslint-config" to your ESLint config file.

If you don't need React support, add "extends": "@sajari/eslint-config/base" instead.

An example .eslintrc.js:

module.exports = {
  extends: ["@sajari/eslint-config"],
};

3. Configure the ESLint TypeScript parser

This config requires knowledge of your TypeScript config.

In your ESLint config, set parserOptions.project to the path of your tsconfig.json.

For example:

 module.exports = {
   extends: ['@sajari/eslint-config'],
+  parserOptions: {
+    project: './tsconfig.json',
+ }
 };

FAQs

Package last updated on 30 Dec 2020

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

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