Files
FullScreenPokemon/tslint.json
Josh Goldberg a2206f904e Limited roaming distances to 3 in any direction (#815)
Adds a tracking member to roaming characters underneath a new `IRoamingCharacter` interface.

Fixes #814.
2019-03-18 18:33:35 -04:00

39 lines
1.2 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-floating-promises": false,
"no-implicit-dependencies": 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,
"object-literal-sort-keys": 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-default": false,
"switch-final-break": false,
"variable-name": false
}
}