mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -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 {
|
export interface IAddress {
|
||||||
first_name?: string;
|
first_name?: string;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from 'n8n-workflow';
|
||||||
|
|
||||||
export const streamOperations = [
|
export const streamOperations = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { INodeProperties } from "n8n-workflow";
|
import { INodeProperties } from 'n8n-workflow';
|
||||||
|
|
||||||
export const userOperations = [
|
export const userOperations = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -144,7 +144,7 @@ const allCurrencies = [
|
||||||
{ name: 'Tajikistani Somoni', value: 'tjs' },
|
{ name: 'Tajikistani Somoni', value: 'tjs' },
|
||||||
{ name: 'Turkmenistani Manat', value: 'tmt' },
|
{ name: 'Turkmenistani Manat', value: 'tmt' },
|
||||||
{ name: 'Tunisian Dinar', value: 'tnd' },
|
{ name: 'Tunisian Dinar', value: 'tnd' },
|
||||||
{ name: "Tongan Pa'anga", value: 'top' },
|
{ name: `Tongan Pa'anga`, value: 'top' },
|
||||||
{ name: 'Turkish Lira', value: 'try' },
|
{ name: 'Turkish Lira', value: 'try' },
|
||||||
{ name: 'Trinidad and Tobago Dollar', value: 'ttd' },
|
{ name: 'Trinidad and Tobago Dollar', value: 'ttd' },
|
||||||
{ name: 'New Taiwan Dollar', value: 'twd' },
|
{ name: 'New Taiwan Dollar', value: 'twd' },
|
||||||
|
|
|
@ -104,6 +104,10 @@
|
||||||
"allow-null-check"
|
"allow-null-check"
|
||||||
],
|
],
|
||||||
"use-isnan": true,
|
"use-isnan": true,
|
||||||
|
"quotemark": [
|
||||||
|
true,
|
||||||
|
"single"
|
||||||
|
],
|
||||||
"quotes": [
|
"quotes": [
|
||||||
"error",
|
"error",
|
||||||
"single"
|
"single"
|
||||||
|
|
Loading…
Reference in a new issue