New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@usercentrics/se-dev-lint

Package Overview
Dependencies
Maintainers
80
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@usercentrics/se-dev-lint

Shared ESLint and Prettier configuration for 'Team Sourcing And Enrichment' typescript packages

latest
Source
npmnpm
Version
0.0.7
Version published
Maintainers
80
Created
Source

@usercentrics/se-dev-lint

Shared ESLint and Prettier configuration for 'Team Sourcing And Enrichment' TypeScript packages.

Installation

npm install @usercentrics/se-dev-lint --save-dev

Usage

Create file eslint.config.mjs in the root of your project with the following code:

import sharedConfig from "@usercentrics/se-dev-lint";

export default [
  ...sharedConfig,
  {
    languageOptions: {
      parserOptions: {
        project: "./tsconfig.json",
        tsconfigRootDir: import.meta.dirname,
        sourceType: "module",
      },
    },
  },
];

Add the following scripts to your scripts section in package.json:

  "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
  "lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",

Run the linter:

npm run lint
npm run lint:fix

Keywords

eslint

FAQs

Package last updated on 04 Sep 2025

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