{ "defaultSeverity": "warning", "extends": [ "tslint:recommended" ], "linterOptions": { "exclude": [ "node_modules/**" ] }, "rules": { "no-shadowed-variable": false, "one-line": false, "arrow-parens": false, "no-trailing-whitespace": false, "member-access": false, "member-ordering": false, "trailing-comma": false, "max-line-length": [ true, 340 ], "max-classes-per-file": false, "quotemark": [true, "single"], "indent": [true, "spaces", 4], "interface-name": false, "object-literal-sort-keys": false, "no-consecutive-blank-lines": false, "no-console": [true, "time", "timeEnd", "trace" ], "variable-name": [ true, "allow-leading-underscore", "allow-pascal-case", "ban-keywords", "check-format" ] } }