New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@arcbees/tslint

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcbees/tslint

TSLint configuration used across Arcbees projects

  • 1.0.5
  • latest
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

@arcbees/tslint

Arcbees’s TSlint rules and configs.

Installation

Install @arcbees/tslint, tslint, codelyzer and tslint-eslint-rules.

yarn add --dev @arcbees/tslint tslint codelyzer tslint-eslint-rules

Usage

Arcbees's preferred rules come bundled in this package. To use them in your project, create a tslint.json file at the root of your project and extend @arcbees/tslint.

{
  "extends": "@arcbees/tslint"
}

You can also create a script in your package.json and run it with yarn yarn tslint.

{
  "scripts": {
    "tslint": "tslint \"./src/**/*.{ts,tsx}\" -p tsconfig.json"
  }
}

Configuration

Some of the rules provided by this package may not suit the needs of your project. You can override them in tslint.json:

{
  "extends": "@arcbees/tslint",
  "rules": {
    "component-selector": [ true, "element", "my-prefix", "kebab-case" ],
    "directive-selector": [ true, "attribute", "myPrefix", "camelCase" ],
    "pipe-naming": [ true, "camelCase", "myPrefix" ]
  }
}

Keywords

FAQs

Package last updated on 19 Jan 2018

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