Skip to main content
Module

x/docx/tslint.json

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
Go to Latest
File
{ "extends": ["tslint:latest", "tslint-immutable"], "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, "no-duplicate-imports": true, "unnecessary-constructor": true, "file-name-casing": [true, "kebab-case"], "interface-name": [true, "always-prefix"], "ordered-imports": true, "no-default-export": true, "arrow-return-shorthand": true, "variable-name": [true, "ban-keywords", "check-format"], // 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"] }] }}