From 3569e22ee372218c49bd032e2069469e72f33b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Mal=C3=BD?= <michal.maly@ibt.cas.cz> Date: Sun, 7 Aug 2022 17:23:51 +0200 Subject: [PATCH] Try to disable some linter warnings --- src/apps/rednatco/reference-conformers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/rednatco/reference-conformers.ts b/src/apps/rednatco/reference-conformers.ts index 9b544da36..32505c6c3 100644 --- a/src/apps/rednatco/reference-conformers.ts +++ b/src/apps/rednatco/reference-conformers.ts @@ -1,6 +1,7 @@ +/* eslint-disable array-bracket-spacing, no-multi-spaces, indent */ + export type Ring = 'purine'|'pyrimidine'; -/* eslint-disable array-bracket-spacing, no-multi-spaces */ export const ReferenceCompounds: Record<string, [string, string]> = { AA00: [ 'A', 'G'], AA01: ['DC', 'DG'], @@ -101,7 +102,6 @@ export const ReferenceCompounds: Record<string, [string, string]> = { }; export type ReferenceCompounds = typeof ReferenceCompounds; -/* eslint-disable no-multi-spaces */ export const CompoundRings: Record<string, Ring> = { '0AD': 'purine', '0AV': 'purine', -- GitLab