You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@minimaltech/eslint-next

Package Overview
Dependencies
Maintainers
0
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@minimaltech/eslint-next

Next ESLint configuration

0.1.16
latest
npm
Version published
Weekly downloads
29
-56.06%
Maintainers
0
Weekly downloads
 
Created
Source

Minimal Technology eslint configuration

This repository contains the shared ESLint configuration used by the Minimal Technology team. It provides a standardized set of linting rules for your JavaScript and TypeScript projects, helping to ensure code quality and consistency across your projects.

Installation

First of all, ensure that Node.js and pnpm are installed in your system. Then, run the following command to install the package:

pnpm add -D @minimaltech/eslint-next

This command installs this package as a devDependency in your project.

Setup

This eslint configuration expects some peerDependencies or devDependencies to be installed in your project. Please ensure that you have them installed as devDependency. You can install them using the following command:

pnpm add -D eslint@^8.57.0 prettier typescript

Usage

Create a eslint.config.* file in your project's root (or update the existing one) with the following content:

import confs from "@minimaltech/eslint-next";

const configs = [
  ...confs,
  {
    // extra configs
  },
];

export default configs;

FAQs

Package last updated on 15 Sep 2024

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