summaryrefslogtreecommitdiff
path: root/std/encoding/_yaml
diff options
context:
space:
mode:
Diffstat (limited to 'std/encoding/_yaml')
-rw-r--r--std/encoding/_yaml/dumper/dumper_state.ts2
-rw-r--r--std/encoding/_yaml/schema.ts2
-rw-r--r--std/encoding/_yaml/type.ts2
-rw-r--r--std/encoding/_yaml/type/float.ts2
-rw-r--r--std/encoding/_yaml/type/int.ts2
5 files changed, 5 insertions, 5 deletions
diff --git a/std/encoding/_yaml/dumper/dumper_state.ts b/std/encoding/_yaml/dumper/dumper_state.ts
index 63b04983e..31fe86f56 100644
--- a/std/encoding/_yaml/dumper/dumper_state.ts
+++ b/std/encoding/_yaml/dumper/dumper_state.ts
@@ -6,7 +6,7 @@
import type { Schema, SchemaDefinition } from "../schema.ts";
import { State } from "../state.ts";
import type { StyleVariant, Type } from "../type.ts";
-import type { ArrayObject, Any } from "../utils.ts";
+import type { Any, ArrayObject } from "../utils.ts";
const _hasOwnProperty = Object.prototype.hasOwnProperty;
diff --git a/std/encoding/_yaml/schema.ts b/std/encoding/_yaml/schema.ts
index b955e5df8..dfb8589c1 100644
--- a/std/encoding/_yaml/schema.ts
+++ b/std/encoding/_yaml/schema.ts
@@ -5,7 +5,7 @@
import { YAMLError } from "./error.ts";
import type { KindType, Type } from "./type.ts";
-import type { ArrayObject, Any } from "./utils.ts";
+import type { Any, ArrayObject } from "./utils.ts";
function compileList(
schema: Schema,
diff --git a/std/encoding/_yaml/type.ts b/std/encoding/_yaml/type.ts
index 89a91106b..f6ce9591c 100644
--- a/std/encoding/_yaml/type.ts
+++ b/std/encoding/_yaml/type.ts
@@ -3,7 +3,7 @@
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import type { ArrayObject, Any } from "./utils.ts";
+import type { Any, ArrayObject } from "./utils.ts";
export type KindType = "sequence" | "scalar" | "mapping";
export type StyleVariant = "lowercase" | "uppercase" | "camelcase" | "decimal";
diff --git a/std/encoding/_yaml/type/float.ts b/std/encoding/_yaml/type/float.ts
index 6d59ed9ed..93635ba25 100644
--- a/std/encoding/_yaml/type/float.ts
+++ b/std/encoding/_yaml/type/float.ts
@@ -4,7 +4,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { StyleVariant, Type } from "../type.ts";
-import { isNegativeZero, Any } from "../utils.ts";
+import { Any, isNegativeZero } from "../utils.ts";
const YAML_FLOAT_PATTERN = new RegExp(
// 2.5e4, 2.5 and integers
diff --git a/std/encoding/_yaml/type/int.ts b/std/encoding/_yaml/type/int.ts
index 6a86aafe9..5186140e4 100644
--- a/std/encoding/_yaml/type/int.ts
+++ b/std/encoding/_yaml/type/int.ts
@@ -4,7 +4,7 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { Type } from "../type.ts";
-import { isNegativeZero, Any } from "../utils.ts";
+import { Any, isNegativeZero } from "../utils.ts";
function isHexCode(c: number): boolean {
return (