Skip to content
Snippets Groups Projects
Commit 3569e22e authored by Michal Malý's avatar Michal Malý
Browse files

Try to disable some linter warnings

parent 550b3d70
No related branches found
No related tags found
No related merge requests found
/* 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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment