1.1.1 • Published 8 years ago
tslint-plugin-ikatyang v1.1.1
tslint-plugin-ikatyang
tslint rules for ikatyang
Install
# using npm
npm install --save-dev tslint-plugin-ikatyang tslint
# using yarn
yarn add --dev tslint-plugin-ikatyang tslintUsage
(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 acceptallowPatterns
- default:
- allowPrefixes
- default:
[] - type:
string[] - e.g.
["."](dotfile)
- default:
- allowSuffixes
- default:
[] - type:
string[] - e.g.
[".test", ".spec"](test files)
- default:
- allowPatterns
- default:
[] - type:
string[] - regex patterns, extname excluded
- default:
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 testLicense
MIT © Ika