Socket
Socket
Sign inDemoInstall

@qulix/tslint-config-angular

Package Overview
Dependencies
60
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @qulix/tslint-config-angular

TypeScript Angular Style Guide


Version published
Maintainers
1
Created

Readme

Source

tslint-config-angular

TSLint shareable config for the Qulix Angular Style Guide

Installation

Install with npm:

$ npm install --save-dev tslint @qulix/tslint-config-angular

Install with yarn:

$ yarn --dev tslint @qulix/tslint-config-angular

Usage

Once the tslint-config-angular package is installed, you can use it by specifying @qulix/tslint-config-angular in the extends section of your TSLint configuration.

// tslint.json
{
  "extends": [
    "@qulix/tslint-config-angular"
  ],
  "rules": {
    // Additional, per-project rules...
  }
}

Migration

During migration, you can disable rulesets by overriding them in yours .tslint configuration file

The rule set is stored in node_modules/@qulix/tslint-config-angular/rules

  "extends": [
    "@qulix/tslint-config-angular"
  ],
  "rules": {
    // components
    "component-selector": [
      true,
      "element",
      ["foo"],
      "kebab-case"
    ]
  }

License

MIT

Keywords

FAQs

Last updated on 05 Feb 2019

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