tslint: Forbidden http url in string

function getStuff(req: express.Request, res: express.Response, next: express.NextFunction): void {
    fetch('http://localhost:3000/stuff')
        .then((data: {}) => {
            res.send(data.body._readableState.buffer.head.data.toString());
        })
        .catch((err: {}) => {
            res.json(err);
        });
}

Я получаю ошибку [tslint] Forbidden http url in string 'http://localhost:3000/stuff' (no-http-string)

I could get this error ignored by putting // tslint:disable-next-line выше fetch() method, but is there any other solution to this?

1 ответ

Решение

Описание этого правила Do not use strings that start with 'http:'. URL strings should start with 'https:'.

1) поставить // tslint:disable-next-line:no-http-string выше fetch() способ отключить проверку для одной строки

2) Поставить

{
    "rules": {
        "no-http-string": false, // <---- this line
    }
}

в tslint.json отключить проверку для всего проекта

Другие вопросы по тегам