tslint rules for ikatyang
# using npm
npm install --save-dev tslint-plugin-ikatyang tslint
# using yarn
yarn add --dev tslint-plugin-ikatyang tslint
(tslint.json)
for tslint@5.0.0+
{
"extends": ["tslint-plugin-ikatyang"],
"rules": {
...
}
}
for tslint@5.2.0+
{
"rulesDirectory": ["tslint-plugin-ikatyang"],
"rules": {
...
}
}
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:
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');
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; } }
# lint
yarn run lint
# format
yarn run format
# build
yarn run build
# test
yarn run test
MIT © Ika