npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@crazyfactory/tslint-rules

v1.9.0

Published

<!--[![Greenkeeper badge](https://badges.greenkeeper.io/crazyfactory/tslint-rules.svg)](https://greenkeeper.io/) --> [![Build Status](https://travis-ci.org/crazyfactory/tslint-rules.svg)](https://travis-ci.org/crazyfactory/tslint-rules) [![GitHub issues](

Downloads

141

Readme

tslint-rules

Build Status GitHub issues codecov devDependencies Status dependencies Status

Contains lint rules for Crazy Factory

  • Typescript 3.x
  • packs it for npm usage
  • uses jest for testing
  • uses travis and semantic-release for deployment
  • uses linting, coverage and git hooks to increase code quality.
  • is configured to support wallaby

Usage

Initially you should:

  • npm install @crazyfactory/tslint-rules
  • update tslint.json (add rules directory)
  • enable rules in tslint.json

Rules

create-async-actions

  • In ts-react-boilerplate, we use createAsyncActions to create Redux async actions. Four actions are created from calling it - BASE, BASE_PENDING, BASE_FULFILLED, and BASE_REJECTED as an example when createAsyncActions("BASE", "BASE_PENDING", "BASE_FULFILLED", "BASE_REJECTED" is called. Still, as you see, we need to provide string literal as arugments due to typescript limitation, if we provide any string variable, the type will be deduced to just string. This rule enforces 2nd, 3rd, and 4th argument to be the concatenation of the first argument string and _PENDING, _FULFILLED, and _REJECTED respectively.

enum-sort-keys

import-react

  • Specify how you should import react. Either import * or import React.
  • Rule options:
    • type: "default" | "star". Default is star

hex-format

  • Requires literal string in hex format to be uppercase/lowercase and/or of specific lengths.
  • Rule options:
    • case: "uppercase" | "lowercase". Default is lowercase
    • allowedLengths: number[]. Default is [4, 7]

interface-sort-keys

jsx-space-before-trailing-slash

  • Requires or bans space before /> part of jsx.
  • Rule options:
    • ["always", "never"]. Default is always.

language

  • Requires that string argument called by Translator object is in the reference.json

  • Rule options:

    • path: path to reference.json

    reference.json needs to be in the following format:

      {
        "reference": [
          {
            "base": "Translation String Here"
          }
        ]
      }
    • callerNames: string[]: Name of translator object type, default is ["Translator"]

no-dup-actions