👕 Add quotemark rule to tslint (#1330)

This commit is contained in:
Ricardo Espinoza 2021-01-13 03:00:07 -05:00 committed by GitHub
parent ea873aa8dc
commit 46fb9c09ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 4 deletions

View file

@ -1,4 +1,4 @@
import { IDataObject } from "n8n-workflow";
import { IDataObject } from 'n8n-workflow';
export interface IAddress {
first_name?: string;

View file

@ -1,4 +1,4 @@
import { INodeProperties } from "n8n-workflow";
import { INodeProperties } from 'n8n-workflow';
export const streamOperations = [
{

View file

@ -1,4 +1,4 @@
import { INodeProperties } from "n8n-workflow";
import { INodeProperties } from 'n8n-workflow';
export const userOperations = [
{

View file

@ -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' },

View file

@ -104,6 +104,10 @@
"allow-null-check"
],
"use-isnan": true,
"quotemark": [
true,
"single"
],
"quotes": [
"error",
"single"