Repository URL to install this package:
|
Version:
2.0.0 ▾
|
| package.json |
| index.js |
| README.md |
| tsconfig.json |
| tslint.json |
preset for tslint config
tslint - version 1.4.0 SKB2B-524
// many times types come for free "arrow-parens": true, // overriding maps is hard to dev with this // "adjacent-overload-signatures": true, // ordering by abc is ugly // "object-literal-sort-keys": true, // doesn't work with aliases "no-implicit-dependencies": [true, "dev"],
// enforces `public` `private` `protected` "member-access": { "severity": "warning", "options": ["check-accessor", "check-parameter-property"] }, "member-ordering": { "options": { "order": "statics-first" } }, // sometimes we want these, will extend this // "ban-types": { // "options": [ // ["Object", "Avoid using the `Object` type. Did you mean `object`?"], // ["Function", "Avoid using the `Function` type. Prefer a specific function type, like `() => void`."], // ["Boolean", "Avoid using the `Boolean` type. Did you mean `boolean`?"], // ["Number", "Avoid using the `Number` type. Did you mean `number`?"], // ["String", "Avoid using the `String` type. Did you mean `string`?"], // ["Symbol", "Avoid using the `Symbol` type. Did you mean `symbol`?"], // ], // },