Files
FullScreenPokemon/tslint.json
Josh Goldberg 235b4d7173 Replaced Gulp with shenanigans-manager@0.2 (#528)
* Used shenanigans-manager@0.2 instead of Gulp

* 'shenanigans-manager'

* 'Bump-patch-version'

* webpack.config.js

* shenanigans-manager@0.2.7

* Added exclude to tslint.json options

* no_tests
2017-12-29 08:23:12 -08:00

35 lines
1.0 KiB
JSON

{
"extends": "./node_modules/shenanigans-manager/setup/tslint.json",
"linterOptions": {
"exclude": [
"./node_modules/**/*"
]
},
"rules": {
"ban-types": false,
"comment-format": false,
"completed-docs": false,
"cyclomatic-complexity": false,
"max-file-line-count": false,
"no-any": false,
"no-bitwise": false,
"no-console": false,
"no-magic-numbers": false,
"no-non-null-assertion": false,
"no-object-literal-type-assertion": false,
"no-unbound-method": false,
"no-unnecessary-type-assertion": false,
"no-unsafe-any": false,
"no-unused-variable": false,
"no-void-expression": false,
"prefer-function-over-method": false,
"prefer-switch": false,
"prefer-template": false,
"restrict-plus-operands": false,
"strict-boolean-expressions": false,
"strict-type-predicates": false,
"switch-final-break": false,
"variable-name": false
}
}