Files
docx-js/tslint.json

35 lines
1.3 KiB
JSON
Raw Normal View History

2017-03-07 22:56:59 +00:00
{
"extends": ["tslint:latest", "tslint-immutable"],
2017-03-07 23:05:09 +00:00
"rules": {
"curly": true,
"one-variable-per-declaration": [true],
2017-03-07 23:05:09 +00:00
"no-any": true,
"no-consecutive-blank-lines": [true],
2017-03-07 23:05:09 +00:00
"no-require-imports": true,
"member-access": [true, "check-accessor"],
"indent": [true, "spaces"],
2017-03-07 23:05:09 +00:00
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"typedef": [true, "call-signature", "parameter", "property-declaration"],
"max-line-length": [false],
"max-classes-per-file": [false],
2017-12-19 21:42:17 +00:00
"no-implicit-dependencies": false,
2018-08-06 03:49:27 +01:00
"no-submodule-imports": false,
2018-08-07 01:25:28 +01:00
"no-null-keyword": true,
2018-08-07 01:38:15 +01:00
"return-undefined": true,
"prefer-readonly": true,
2019-01-28 13:04:51 +00:00
"no-duplicate-imports": true,
"unnecessary-constructor": true,
"file-name-casing": [true, "kebab-case"],
2020-10-10 13:41:26 +01:00
"interface-name": [true, "always-prefix"],
"ordered-imports": true,
// Functional Programming Rules
"no-parameter-reassignment": true,
"readonly-keyword": true,
"no-delete": true,
"no-method-signature": true,
"no-mixed-interface": true
// "no-expression-statement": [true, { "ignore-prefix": ["console.", "describe", "it", "super", "expect"] }]
2017-03-07 23:05:09 +00:00
}
2018-08-03 02:29:58 +01:00
}