human-modelling-framework
Version:
Human sensorimotor control modelling framework based on Markkula et al's paper (DOI: 10.1007/s00422-017-0743-9)
26 lines (25 loc) • 568 B
JSON
{
"extends": ["tslint:recommended"],
"rules": {
"interface-name": false,
"max-line-length": [true, 100],
"no-console": [true, "time", "timeEnd", "trace"],
"no-string-literal": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "avoid-escape"],
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
],
"variable-name": [
true,
"allow-leading-underscore",
"ban-keywords",
"check-format"
]
}
}