Fix linting errors

This commit is contained in:
SleepWalker
2020-05-21 21:51:35 +03:00
parent a5404002fd
commit 0192f53932
8 changed files with 4 additions and 8 deletions

View File

@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import expect from 'app/test/unexpected';
import sinon, { SinonFakeServer } from 'sinon';

View File

@@ -169,7 +169,6 @@ export async function requestToken(refreshToken: string): Promise<string> {
const response: OAuthResponse = await request.post(
'/api/authentication/refresh-token',
{
// eslint-disable-next-line @typescript-eslint/camelcase
refresh_token: refreshToken,
},
{

View File

@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { ApplicationType } from 'app/components/dev/apps';
import request from 'app/services/request';