Repository URL to install this package:
|
Version:
1.2.6 ▾
|
| README.md |
| package.json |
| tslint.json |
preset for tslint config
// 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"] }, // 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`?"], // ], // },