Socket
Socket
Sign inDemoInstall

@assemble-inc/eslint-config-assemble

Package Overview
Dependencies
14
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @assemble-inc/eslint-config-assemble

Assemble front-end linting rules


Version published
Maintainers
3
Created

Readme

Source

Assemble Inc ESLint Configuration

This package contains Assemble Inc's ESLint configurations for both Typescript and JavaScript projects. ESLint is used for enforcement of code quality across Assemble Inc projects.

All ESLint rules enforcing code style have been disabled in favor of using prettier for code formatting. Refer to the prettier-config for integrating prettier into your application.

Installation

From the root of your package, install the Assemble Inc. configuration:

yarn add --dev eslint-config-assemble

You will also need to install the following peer dependencies:

yarn add --dev eslint prettier eslint-plugin-prettier

Configuration

Add Linting Scripts

Add the following scripts to your package.json.

"scripts": {
  "lint": "eslint \"src/**/*.{jsx,js,ts,tsx}\"",
  "lint:fix": "eslint \"src/**/*.{jsx,js,ts,tsx}\" --fix"
}

The lint:fix script will automatically attempt to fix reported errors. Leaving this off will report errors/warnings without attempting to fix them.

You can update the file extensions list to suit the particular files you would like to lint.

Import the Linting configuration

The Assemble Inc. configuration needs to be imported into ESLint. Add the following to your package.json.

  "eslintConfig": {
    "extends": [
      "eslint-config-assemble"
    ],
    "env": {
      "browser": true,
      "node": true
    }
  }

Usage

To lint all typescript files in your project, run yarn lint.

To automatically fix linting errors in your project, run yarn lint:fix or yarn lint --fix.

FAQs

Last updated on 18 Nov 2022

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