mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
👕 Add quotemark rule to tslint (#1330)
This commit is contained in:
parent
ea873aa8dc
commit
46fb9c09ab
|
@ -1,4 +1,4 @@
|
|||
import { IDataObject } from "n8n-workflow";
|
||||
import { IDataObject } from 'n8n-workflow';
|
||||
|
||||
export interface IAddress {
|
||||
first_name?: string;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { INodeProperties } from "n8n-workflow";
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const streamOperations = [
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { INodeProperties } from "n8n-workflow";
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const userOperations = [
|
||||
{
|
||||
|
|
|
@ -144,7 +144,7 @@ const allCurrencies = [
|
|||
{ name: 'Tajikistani Somoni', value: 'tjs' },
|
||||
{ name: 'Turkmenistani Manat', value: 'tmt' },
|
||||
{ name: 'Tunisian Dinar', value: 'tnd' },
|
||||
{ name: "Tongan Pa'anga", value: 'top' },
|
||||
{ name: `Tongan Pa'anga`, value: 'top' },
|
||||
{ name: 'Turkish Lira', value: 'try' },
|
||||
{ name: 'Trinidad and Tobago Dollar', value: 'ttd' },
|
||||
{ name: 'New Taiwan Dollar', value: 'twd' },
|
||||
|
|
|
@ -104,6 +104,10 @@
|
|||
"allow-null-check"
|
||||
],
|
||||
"use-isnan": true,
|
||||
"quotemark": [
|
||||
true,
|
||||
"single"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
|
|
Loading…
Reference in a new issue