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

mws-tslint-rules

v1.0.0

Published

Custom set of TSLint rules

Downloads

8

Readme

dependencies dev-dependencies

NPM

tslint-rules

A set of custom TSLint rules.

Usage

Install from npm to your devDependencies:

npm install --save-dev mws-tslint-rules

Configure tslint to use the mws-tslint-rules folder:

Add the following path to the rulesDirectory setting in your tslint.json file:

{
   "rulesDirectory": [
     "node_modules/mws-tslint-rules/dist"
   ],
   "rules": {
     ...
   }
}

Now configure some of the new rules.

Available Rules

empty-line-before-return-statement

TODO

Rationale:

TODO

Usage:

{
  "empty-line-before-return-statement": true
}

Options:

Not configurable.

empty-lines-at-block-statement

TODO

Rationale:

TODO

Usage:

{
  "empty-lines-at-block-statement": true
}

Options:

Not configurable.

empty-lines-at-variable-statement

TODO

Rationale:

TODO

Usage:

{
  "empty-lines-at-variable-statement": true
}

Options:

Not configurable.

ext-variable-name

This rule provides extensive support for customizing allowable variable names for a wide variety of variable tags. The rule is configured by setting up a list of sub-rules that specify the tags of variables to check and the checks to perform on the variable"s name. The sub-rules are checked in order and the first one that matches the tags of variable being checked is the only one that is used.

An example set of sub-rules for an example coding standard is shown below.

Rationale:

Usage:

{
	"ext-variable-name": [
		true,
		[
			"class",
			"pascal"
		],
		[
			"interface",
			"pascal",
			{
				"regex": "^I.*$"
			}
		],
		[
			"parameter",
			"camel"
		],
		[
			"property",
			"static",
			"camel",
			{
				"regex": "^s.*$"
			}
		],
		[
			"property",
			"private",
			"camel",
			"allow-leading-underscore"
		],
		[
			"property",
			"protected",
			"camel",
			"allow-leading-underscore"
		],
		[
			"variable",
			"local",
			"snake"
		],
		[
			"variable",
			"const",
			"upper"
		],
		[
			"variable",
			"camel",
			{
				"regex": "^g.*$"
			}
		],
		[
			"method",
			"private",
			"camel",
			"allow-leading-underscore"
		],
		[
			"method",
			"protected",
			"camel",
			"allow-leading-underscore"
		],
		[
			"function",
			"camel"
		],
		[
			"default",
			"camel"
		]
	]
}

Options:

Allowed tags for variables:

  • primary (choose one):
  • class, interface, parameter, property, method, function, variable
  • modifiers (choose zero or more):
  • local, const, static, public, protected, private

note: If any tags is added to a sub-rule then all must match the variable.

Checks allowed:

  • One of:
  • "camel": Require variables to use camelCaseVariables
  • "snake": Require variables to use snake_case_variables
  • "pascal": Require variables to use PascalCaseVariables
  • "upper": Require variables to use UPPER_CASE_VARIABLES
  • "allow-leading-underscore": permits the variable to have a leading underscore
  • "allow-trailing-underscore": permits the variable to have a trailing underscore
  • "ban-keywords": bans a list of language keywords from being used
  • {"regex": "^.*$"}: checks the variable name against the given regex

sorting-import

TODO

Rationale:

TODO

Usage:

{
  "sorting-import": [
    true,
    {
      "orderImportType": ["NAMED", "SIDE_EFFECT", "NAMESPACE", "NAMED_WITHOUT_BRACKETS", "EQUALS"],
      "orderSortingType": "MAX_TO_MIN_LENGTH"
      
    }
  
  ]
}

Options:

For orderImportType, array of all the following in desired order:

  • "NAMED" -
  • "SIDE_EFFECT" -
  • "NAMESPACE" -
  • "NAMED_WITHOUT_BRACKETS" -
  • "EQUALS" -

For orderSortingType, one of the following:

  • "MAX_TO_MIN_LENGTH" -
  • "MIN_TO_MAX_LENGTH" -

types-in-method-declaration

TODO

Rationale:

TODO

Usage:

{
  "types-in-method-declaration": true
}

Options:

Not configurable.

whitespace-in-method-declaration

TODO

Rationale:

TODO

Usage:

{
  "whitespace-in-method-declaration": true
}

Options:

Not configurable.

Contributions and Development

Issue reports and pull requests are highly welcome! Please make sure to provide sensible tests along with your pull request.

To get started with development, clone the project and run npm install. To run the tests execute npm test.