eslint rule

This commit is contained in:
Jon McClure 2023-09-18 13:34:30 +01:00
parent 6a7a34ef0a
commit 9f1878bb18
2 changed files with 1 additions and 1 deletions

View file

@ -44,6 +44,7 @@ module.exports = {
'import/no-duplicates': 'off',
'import/no-mutable-exports': 'off',
'import/no-unresolved': 'off',
'svelte/no-at-html-tags': 'off',
indent: ['error', 2],
},
},

View file

@ -1,7 +1,6 @@
<!-- @component `EndNotes` [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-InfoBox--default) -->
<script lang="ts">
import type { ContainerWidth } from '../@types/global';
/* eslint svelte/no-at-html-tags: "off" */
type Theme = 'light' | 'dark';