Skip to content

patricksevat/tslint-stencil

 
 

Repository files navigation

tslint-stencil

Adds stylistic tslint rules for Stencil projects

Getting started

Add the following line to your tslint.json file to enable the default ruleset (which follows the Stencil Style Guide)

{
    "extends": ["tslint-stencil/default"],
}

Alternatively, you can extend the bare package and enable each rule on a individual basis

{
    "extends": ["tslint-stencil"],
    "rules": {
        "host-data-precedes-render": true
    }
}

Rules

Ensures that a Component's tag does not use any of the given prefixes.

Ensures that Component members are ordered consistently

Allows a maximum number of Components to be placed in a single file

Requires decorated class members to follow a consistent style (singleline or multiline)

Ensures that Component lifecycle methods are ordered consistently

Ensures that a Component's tag begins with the given prefix(es).

Ensures that Stencil methods (hostData, render) are ordered consistently

Contributing

Rules in the src/ directory must be camelCased and end in Rule. More information on developing custom tslint rules can be found on the tslint site

Before adding your custom rule, be sure to write a test for it. Then, you should be able to verify that it works by running:

npm run verify

About

Contributes some helpful tslint rules for Stencil projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 73.5%
  • JavaScript 26.5%