refactor: Lint for no unneeded backticks (#5057) (no-changelog)

*  Create rule `no-unneeded-backticks`

* 👕 Enable rule

*  Run rule on `cli`

*  Run rule on `core`

*  Run rule on `workflow`

*  Rule rule on `design-system`

*  Run rule on `node-dev`

*  Run rule on `editor-ui`

*  Run rule on `nodes-base`
This commit is contained in:
Iván Ovejero
2022-12-29 12:20:43 +01:00
committed by GitHub
parent a7868ae77d
commit d9b98fc8be
239 changed files with 772 additions and 714 deletions

View File

@@ -143,7 +143,7 @@ export class HaloPSA implements INodeType {
const response = (await haloPSAApiRequest.call(
this,
'GET',
`/TicketType`,
'/TicketType',
tokens.access_token,
{},
)) as IDataObject[];
@@ -178,7 +178,7 @@ export class HaloPSA implements INodeType {
const response = (await haloPSAApiRequest.call(
this,
'GET',
`/agent`,
'/agent',
tokens.access_token,
{},
)) as IDataObject[];
@@ -294,7 +294,7 @@ export class HaloPSA implements INodeType {
this,
'clients',
'GET',
`/client`,
'/client',
tokens.access_token,
{},
qs,
@@ -305,7 +305,7 @@ export class HaloPSA implements INodeType {
const { clients } = await haloPSAApiRequest.call(
this,
'GET',
`/client`,
'/client',
tokens.access_token,
{},
qs,
@@ -401,7 +401,7 @@ export class HaloPSA implements INodeType {
this,
'sites',
'GET',
`/site`,
'/site',
tokens.access_token,
{},
qs,
@@ -412,7 +412,7 @@ export class HaloPSA implements INodeType {
const { sites } = await haloPSAApiRequest.call(
this,
'GET',
`/site`,
'/site',
tokens.access_token,
{},
qs,
@@ -510,7 +510,7 @@ export class HaloPSA implements INodeType {
this,
'tickets',
'GET',
`/tickets`,
'/tickets',
tokens.access_token,
{},
qs,
@@ -521,7 +521,7 @@ export class HaloPSA implements INodeType {
const { tickets } = await haloPSAApiRequest.call(
this,
'GET',
`/tickets`,
'/tickets',
tokens.access_token,
{},
qs,
@@ -618,7 +618,7 @@ export class HaloPSA implements INodeType {
this,
'users',
'GET',
`/users`,
'/users',
tokens.access_token,
{},
qs,
@@ -629,7 +629,7 @@ export class HaloPSA implements INodeType {
const { users } = await haloPSAApiRequest.call(
this,
'GET',
`/users`,
'/users',
tokens.access_token,
{},
qs,