You've already forked FullScreenPokemon
mirror of
https://github.com/FullScreenShenanigans/FullScreenPokemon.git
synced 2026-04-28 12:58:40 -07:00
f52e515548
* Brought in EightBittr version with consolidated creator functions EightBittr just changed the built-in creators (e.g. `createAreaSpawner`) to provide more component details. This matches that change by overriding the new built-in components from EightBittr so that no more built-in creators need to be recreated here. * Used new EightBittr version with numCols, numRows * Used new BabyIoc version too * Recreated IGroups in Groups.ts * shenanigans-manager@0.2.44
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"extends": "./node_modules/shenanigans-manager/setup/tslint.json",
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"./node_modules/**/*"
|
|
]
|
|
},
|
|
"rules": {
|
|
"arrow-return-shorthand": false,
|
|
"ban-types": false,
|
|
"comment-format": false,
|
|
"completed-docs": false,
|
|
"cyclomatic-complexity": false,
|
|
"max-file-line-count": false,
|
|
"no-any": false,
|
|
"no-async-without-await": 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-string-expressions": false,
|
|
"strict-type-predicates": false,
|
|
"switch-default": false,
|
|
"switch-final-break": false,
|
|
"variable-name": false
|
|
}
|
|
}
|