ts-raycasting
Version:
Raycasting in typescript
41 lines (40 loc) • 1.3 kB
JSON
{
"rules": {
"no-any": true,
"no-arg": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-eval": true,
"no-null-keyword": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-var-keyword": true,
"radix": true,
"switch-default": true,
"triple-equals": true,
"eofline": true,
"indent": [true, "spaces"],
"no-trailing-whitespace": true,
"trailing-comma": true,
"max-line-length": 80,
"class-name": true,
"comment-format": [true, "check-space"],
"interface-name": true,
"no-consecutive-blank-lines": true,
"jsdoc-format": true,
"quotemark": [true, "single", "avoid-escape"],
"semicolon": [true, "always"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"whitespace": [true,
"check-decl",
"check-module",
"check-seperator",
"check-type",
"check-typecast"
]
}
}