🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

eslint-config-un

Package Overview
Dependencies
Maintainers
0
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-un

A universal-ish ESLint config aiming to be reasonably strict and easily configurable.

0.0.7
Source
npm
Version published
Weekly downloads
541
960.78%
Maintainers
0
Weekly downloads
 
Created
Source

eslint-config-un

npm

Grown out of the personal collection of rules, an ESLint config aspiring to cover as many rules as possible, be reasonably strict and easily configurable. Only supports ESLint 9 and the flat config format.

Installation

npm i -D eslint-config-un
pnpm i -D eslint-config-un
yarn add -D eslint-config-un

List of configs

Includes the rules from the following configs & plugins:

Features

  • Automatically detects the presence of typescript, vue, nuxt and pinia packages and enables corresponding configurations (which can also be enabled or disabled explicitly).
  • Every block of rules supports overrides for rules.
  • Designed to be used separately from Prettier: almost all the rules potentially conflicting with Prettier are disabled by default.
  • Written in TypeScript so all the options are typed.

Usage

In your eslint.config.[cm]?js:

// @ts-check
import {eslintConfig} from 'eslint-config-un';

export default eslintConfig({
  // your configuration (optional)
});

Notes

  • You don't need to install any of the mentioned configs/plugins as they are all the dependencies of this package.
  • This package has a peer dependency of eslint>=9. Please ensure you have installed the correct version. Some package managers are installing non-optional peer dependencies automatically.
  • Packages lookup (such as typescript or vue) is performed using local-pkg.
  • Type-checked, or type-aware TypeScript rules are enabled by default which are known to be performance-demanding. It's just a little heads-up and you should make your own decision whether to keep them enabled. More about type-aware linting.
  • By default, TypeScript rules will be enabled in .vue files if enforceTypescriptInScriptSection is set to true in vue's config options which in turn is automatically set to true if typescript package found installed. If you have .vue files authored in both TypeScript and JavaScript, use enforceTypescriptInScriptSection.{files,ignores} to manually specify TS & JS Vue components respectively. It is not currently possible to apply different ESLint rules depending on the value of lang attribute of <script> SFC section.
  • All plugins listed above are enabled by default or enabled automatically under certain conditions, but there is one that is disabled by default: security.
  • Some rules are set to warn by default. You can change some or even all such rule's reporting level using errorsInsteadOfWarnings option. You can find all such rules by inspecting the source code of this package.

Troubleshooting

TypeError: Key rules: Key disable-autofix/<rule name>: Could not find <rule name> in plugin disable-autofix

We disable autofix for some rules in this package via eslint-plugin-disable-autofix. However, it requires all the configs/plugins packages to be hoisted (installed to the top level of node_modules). You might need to reinstall this package, re-create node_modules directory (do not delete your lock file!) or set shamefully-hoist=true in your .npmrc if you're using pnpm. Sometimes you'll need to manually install some packages refused to be hoisted (happens with @typescript-eslint/eslint-plugin: npm i @typescript-eslint/eslint-plugin -D --legacy-peer-deps);

TypeError: Key languageOptions: Key globals: Global AudioWorkletGlobalScope has leading or trailing whitespace.

Install globals package as a dev dependency.

Keywords

eslint

FAQs

Package last updated on 18 Aug 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