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

@angular-ru/eslint-config-enterprise

Package Overview
Dependencies
Maintainers
2
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular-ru/eslint-config-enterprise

Angular-RU package

  • 14.0.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Shareable Configs for Angular projects

image image

These rules are the most stringent, which allow you to control all types of data in your project, as well as more strictly determine the order of imports.

Quick start

$ npm install @angular-ru/eslint-config-enterprise -D

Also you do not need to manually install ESLint, it will always be the newest.

Add to your .eslintrc.json:

{
    "extends": "@angular-ru/eslint-config-enterprise"
}

Check out eslint:

$ eslint "**/*.ts"

Override rules

.eslintrc.json or .eslintrc.js:

{
    extends: '@angular-ru/eslint-config-enterprise',
    rules: {
        // override extended rules
    }
}

Spellchecker

You can add your own words that will be skipped during the spellcheck.

Create .spellcheckerrc.json or .spellcheckerrc.js:

{
    "skipWords": ["these", "words", "will", "be", "skipped"]
}

Optional

import/no-deprecated by default "off"

{
    "extends": "@angular-ru/eslint-config-enterprise",
    "rules": {
        "import/no-deprecated": "error"
    }
}

FAQs

Package last updated on 19 Oct 2023

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