Skip to content

Commit 157822a

Browse files
committed
Linting
1 parent b4f42c8 commit 157822a

63 files changed

Lines changed: 77 additions & 81 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

deno.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
],
6464
"compilerOptions": {
6565
"strict": true,
66+
"verbatimModuleSyntax": true,
6667
"jsx": "react-jsx",
6768
"jsxImportSource": "npm:react@19.1.1",
6869
"types": ["npm:@types/react", "npm:@types/react-dom", "npm:@types/three"],

src/system/locale/_config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828

2929
// deno-fmt-ignore-file
3030

31-
import { TLocalizedValidationMessageCallback } from '../../error/index.ts'
31+
import { type TLocalizedValidationMessageCallback } from '../../error/index.ts'
3232
import { en_US } from './en_US.ts'
3333

3434
let locale: TLocalizedValidationMessageCallback = en_US

src/system/locale/ar_001.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Arabic (World) - ISO 639-1 language code 'ar' with UN M.49 region code '001' for World. */
3535
export function ar_001(error: TValidationError): string {

src/system/locale/bn_BD.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Bengali (Bangladesh) - ISO 639-1 language code 'bn' with ISO 3166-1 alpha-2 country code 'BD' for Bangladesh. */
3535
export function bn_BD(error: TValidationError): string {

src/system/locale/cs_CZ.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Czech (Czech Republic) - ISO 639-1 language code 'cs' with ISO 3166-1 alpha-2 country code 'CZ' for Czech Republic. */
3535
export function cs_CZ(error: TValidationError): string {

src/system/locale/de_DE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** German (Germany) - ISO 639-1 language code 'de' with ISO 3166-1 alpha-2 country code 'DE' for Germany. */
3535
export function de_DE(error: TValidationError): string {

src/system/locale/el_GR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Greek (Greece) - ISO 639-1 language code 'el' with ISO 3166-1 alpha-2 country code 'GR' for Greece. */
3535
export function el_GR(error: TValidationError): string {

src/system/locale/en_US.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828

2929
// deno-fmt-ignore-file
3030

31-
import { TValidationError } from '../../error/index.ts'
31+
import { type TValidationError } from '../../error/index.ts'
3232

3333
/** en_US: English (United States) - ISO 639-1 language code 'en' with ISO 3166-1 alpha-2 country code 'US' for United States. */
3434
export function en_US(error: TValidationError): string {

src/system/locale/es_419.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Spanish (Latin America) - ISO 639-1 language code 'es' with UN M.49 region code '419' for Latin America and the Caribbean. */
3535
export function es_419(error: TValidationError): string {

src/system/locale/es_AR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-coverage-ignore-start
3131

32-
import { TValidationError } from '../../error/index.ts'
32+
import { type TValidationError } from '../../error/index.ts'
3333

3434
/** Spanish (Argentina) - ISO 639-1 language code 'es' with ISO 3166-1 alpha-2 country code 'AR' for Argentina. */
3535
export function es_AR(error: TValidationError): string {

0 commit comments

Comments
 (0)