lint: type naming for new rules
This commit is contained in:
parent
8db6b436c7
commit
131c9bf530
|
@ -106,6 +106,15 @@
|
||||||
"leadingUnderscore": "forbid",
|
"leadingUnderscore": "forbid",
|
||||||
"trailingUnderscore": "forbid"
|
"trailingUnderscore": "forbid"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"selector": "enumMember",
|
||||||
|
"format": [
|
||||||
|
"camelCase",
|
||||||
|
"UPPER_CASE"
|
||||||
|
],
|
||||||
|
"leadingUnderscore": "forbid",
|
||||||
|
"trailingUnderscore": "forbid"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"selector": "typeLike",
|
"selector": "typeLike",
|
||||||
"format": [
|
"format": [
|
||||||
|
@ -120,10 +129,7 @@
|
||||||
"PascalCase"
|
"PascalCase"
|
||||||
],
|
],
|
||||||
"leadingUnderscore": "forbid",
|
"leadingUnderscore": "forbid",
|
||||||
"trailingUnderscore": "forbid",
|
"trailingUnderscore": "forbid"
|
||||||
"prefix": [
|
|
||||||
"I"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"@typescript-eslint/no-empty-function": "error",
|
"@typescript-eslint/no-empty-function": "error",
|
||||||
|
|
|
@ -9,14 +9,14 @@ Get the constructor name from an instance.
|
||||||
<b>Signature:</b>
|
<b>Signature:</b>
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
export declare function constructorName(val: object): string;
|
export declare function constructorName(val: Reflectable): string;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
| Parameter | Type | Description |
|
| Parameter | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| val | object | |
|
| val | Reflectable | |
|
||||||
|
|
||||||
<b>Returns:</b>
|
<b>Returns:</b>
|
||||||
|
|
||||||
|
|
|
@ -9,14 +9,14 @@ Get the constructor from an instance.
|
||||||
<b>Signature:</b>
|
<b>Signature:</b>
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
export declare function getConstructor(val: object): Function;
|
export declare function getConstructor(val: Reflectable): Function;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
| Parameter | Type | Description |
|
| Parameter | Type | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| val | object | |
|
| val | Reflectable | |
|
||||||
|
|
||||||
<b>Returns:</b>
|
<b>Returns:</b>
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ Get the methods from an instance and its prototypes.
|
||||||
<b>Signature:</b>
|
<b>Signature:</b>
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
export declare function getMethods<TValue extends object>(value: TValue): Set<Function>;
|
export declare function getMethods<TValue extends Reflectable>(value: TValue): Set<Method<TValue>>;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
@ -20,5 +20,5 @@ export declare function getMethods<TValue extends object>(value: TValue): Set<Fu
|
||||||
|
|
||||||
<b>Returns:</b>
|
<b>Returns:</b>
|
||||||
|
|
||||||
Set<Function>
|
Set<Method<TValue>>
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ Reject after a set amount of time if the original promise has not yet resolved.
|
||||||
<b>Signature:</b>
|
<b>Signature:</b>
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
export declare function timeout<T>(ms: number, oper: Promise<T>): Promise<Optional<T>>;
|
export declare function timeout<T>(ms: number, oper: Promise<T>): Promise<T>;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
@ -21,5 +21,5 @@ export declare function timeout<T>(ms: number, oper: Promise<T>): Promise<Option
|
||||||
|
|
||||||
<b>Returns:</b>
|
<b>Returns:</b>
|
||||||
|
|
||||||
Promise<[Optional](./js-utils.optional.md)<!-- --><T>>
|
Promise<T>
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,17 @@ import { isFunction } from 'lodash';
|
||||||
|
|
||||||
import { doesExist, isNil } from './Maybe';
|
import { doesExist, isNil } from './Maybe';
|
||||||
|
|
||||||
|
/* eslint-disable-next-line @typescript-eslint/ban-types */
|
||||||
|
type Reflectable = object;
|
||||||
|
|
||||||
|
type Method<TClass> = (this: TClass, ...args: Array<unknown>) => unknown;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the constructor from an instance.
|
* Get the constructor from an instance.
|
||||||
*
|
*
|
||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
export function getConstructor(val: object) {
|
export function getConstructor(val: Reflectable) {
|
||||||
return val.constructor;
|
return val.constructor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,8 +21,8 @@ export function getConstructor(val: object) {
|
||||||
*
|
*
|
||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
export function getMethods<TValue extends object>(value: TValue): Set<Function> {
|
export function getMethods<TValue extends Reflectable>(value: TValue): Set<Method<TValue>> {
|
||||||
const methods = new Set<Function>();
|
const methods = new Set<Method<TValue>>();
|
||||||
|
|
||||||
for (const name of Object.getOwnPropertyNames(value)) {
|
for (const name of Object.getOwnPropertyNames(value)) {
|
||||||
const desc = Object.getOwnPropertyDescriptor(value, name);
|
const desc = Object.getOwnPropertyDescriptor(value, name);
|
||||||
|
@ -46,6 +51,6 @@ export function getMethods<TValue extends object>(value: TValue): Set<Function>
|
||||||
*
|
*
|
||||||
* @public
|
* @public
|
||||||
*/
|
*/
|
||||||
export function constructorName(val: object) {
|
export function constructorName(val: Reflectable) {
|
||||||
return getConstructor(Reflect.getPrototypeOf(val)).name;
|
return getConstructor(Reflect.getPrototypeOf(val)).name;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ export const SIGNAL_RESET: NodeJS.Signals = 'SIGINT';
|
||||||
export const SIGNAL_STOP: NodeJS.Signals = 'SIGTERM';
|
export const SIGNAL_STOP: NodeJS.Signals = 'SIGTERM';
|
||||||
|
|
||||||
export function signal(...signals: Array<NodeJS.Signals>): Promise<NodeJS.Signals> {
|
export function signal(...signals: Array<NodeJS.Signals>): Promise<NodeJS.Signals> {
|
||||||
return new Promise((res, _) => {
|
return new Promise((res, rej) => {
|
||||||
function handler(fired: NodeJS.Signals) {
|
function handler(fired: NodeJS.Signals) {
|
||||||
for (const s of signals) {
|
for (const s of signals) {
|
||||||
process.removeListener(s, handler);
|
process.removeListener(s, handler);
|
||||||
|
|
Loading…
Reference in New Issue