config: disable object-literal-sort-keys
The main reason is that its option 'match-declaration-order-only' doesn't work with type inheritance.
This commit is contained in:
parent
77274d42fd
commit
d2b772a899
|
@ -92,7 +92,6 @@ export function login(name: string, password: string): Promise<void> {
|
|||
const loginParams: ILoginParams = {
|
||||
...meta,
|
||||
...{
|
||||
// tslint:disable-next-line: object-literal-sort-keys
|
||||
username_or_email: name,
|
||||
password,
|
||||
},
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"property-declaration"
|
||||
],
|
||||
"no-console": true,
|
||||
"object-literal-sort-keys": [true, "match-declaration-order-only"],
|
||||
"object-literal-sort-keys": false,
|
||||
"no-implicit-dependencies": false,
|
||||
"no-submodule-imports": false,
|
||||
"no-floating-promises": true,
|
||||
|
|
Loading…
Reference in New Issue