mirror of
https://github.com/araxiaonline/wow-wotlk-declarations.git
synced 2026-06-13 02:42:25 -04:00
28 lines
753 B
JSON
28 lines
753 B
JSON
{
|
|
"extends": [
|
|
"tslint:recommended"
|
|
],
|
|
"rules": {
|
|
"array-type": false,
|
|
"arrow-parens": false,
|
|
// blizzard named their object like C_BlackMarket. In order to support that, class-name must be false
|
|
"class-name":false,
|
|
"interface-name": false,
|
|
"interface-over-type-literal": false,
|
|
"max-line-length": [
|
|
true,
|
|
160
|
|
],
|
|
"no-empty-interface": false,
|
|
"no-namespace": [
|
|
true,
|
|
"allow-declarations"
|
|
],
|
|
// This is a declaration only repository, references are ok!
|
|
"no-reference": false,
|
|
"object-literal-sort-keys": false,
|
|
"radix": false,
|
|
"trailing-comma": false
|
|
}
|
|
}
|