Files
docx-js/tslint.json
2018-08-07 01:38:15 +01:00

42 lines
961 B
JSON

{
"extends": "tslint:latest",
"rules": {
"curly": true,
"one-variable-per-declaration": [
true
],
"no-any": true,
"no-consecutive-blank-lines": [
true
],
"no-require-imports": true,
"member-access": [
true,
"check-accessor"
],
"indent": [
true,
"spaces"
],
"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
],
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"no-null-keyword": true,
"return-undefined": true,
"prefer-readonly": true
}
}