1.1.1 • Published 7 years ago

tslint-plugin-ikatyang v1.1.1

Weekly downloads
206
License
MIT
Repository
github
Last release
7 years ago

tslint-plugin-ikatyang

npm build coverage

tslint rules for ikatyang

Changelog

Install

# using npm
npm install --save-dev tslint-plugin-ikatyang tslint

# using yarn
yarn add --dev tslint-plugin-ikatyang tslint

Usage

(tslint.json)

for tslint@5.0.0+

{
  "extends": ["tslint-plugin-ikatyang"],
  "rules": {
    ...
  }
}

for tslint@5.2.0+

{
  "rulesDirectory": ["tslint-plugin-ikatyang"],
  "rules": {
    ...
  }
}

Rules

filename-convention

Enforces all linted files to have their names in a certain case style

Options:

  • namingStyle
    • default: "kebab-case"
    • type: "camelCase" | "kebab-case" | "PascalCase" | "snake_case" | "none"
    • "none" means only accept allowPatterns
  • allowPrefixes
    • default: []
    • type: string[]
    • e.g. ["."] (dotfile)
  • allowSuffixes
    • default: []
    • type: string[]
    • e.g. [".test", ".spec"] (test files)
  • allowPatterns
    • default: []
    • type: string[]
    • regex patterns, extname excluded

no-bad-namespace-import

Disallow bad namespace import

  • pass

    import * as ns1 from './namespace'; // export = namespace { ... }
    import * as ns2 from './individual'; // export const x = 1; export const y = 2; ...
  • fail

    import * as func from './function'; // export = function () { ... }
    import * as mixin from './mixin'; // function a () {}; namespace a { ... }; export = a;
  • fixed

    import func = require('./function');
    import mixin = require('./mixin');

no-mixed-parameter-properties

Disallow mixed parameter properties

  • pass

    class MyClass {
      public prop;
      constructor(arg1, arg2) {}
    }
  • fail

    class MyClass {
      public prop;
      constructor(public propArg, arg) {}
      //          ~~~~~~~~~~~~~~ [fail]
    }
  • fixed

    class MyClass {
      public prop;
      public propArg;
      constructor(propArg, arg) {
        this.propArg = propArg;
      }
    }

Development

# lint
yarn run lint

# format
yarn run format

# build
yarn run build

# test
yarn run test

License

MIT © Ika