diff options
author | Ry Dahl <ry@tinyclouds.org> | 2020-01-02 15:13:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 15:13:47 -0500 |
commit | bfab4ed0dfa5e2034005133a257201c934bc3a80 (patch) | |
tree | cd53471ad241770d3cd9a9da6246463d92e0ebeb /std/prettier | |
parent | b0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff) |
Happy new year! (#3578)
Diffstat (limited to 'std/prettier')
-rw-r--r-- | std/prettier/ignore.ts | 2 | ||||
-rw-r--r-- | std/prettier/ignore_test.ts | 2 | ||||
-rwxr-xr-x | std/prettier/main.ts | 2 | ||||
-rw-r--r-- | std/prettier/main_test.ts | 2 | ||||
-rw-r--r-- | std/prettier/prettier.ts | 2 | ||||
-rw-r--r-- | std/prettier/util.ts | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/std/prettier/ignore.ts b/std/prettier/ignore.ts index ffada98de..08a823984 100644 --- a/std/prettier/ignore.ts +++ b/std/prettier/ignore.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. /** * Parse the contents of the ignore file and return patterns. diff --git a/std/prettier/ignore_test.ts b/std/prettier/ignore_test.ts index 05f67edf4..019cddc0e 100644 --- a/std/prettier/ignore_test.ts +++ b/std/prettier/ignore_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { test, runIfMain } from "../testing/mod.ts"; import { assertEquals } from "../testing/asserts.ts"; import { parse } from "./ignore.ts"; diff --git a/std/prettier/main.ts b/std/prettier/main.ts index 163e0e45f..248aff9a0 100755 --- a/std/prettier/main.ts +++ b/std/prettier/main.ts @@ -20,7 +20,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // This script formats the given source files. If the files are omitted, it // formats the all files in the repository. import { parse } from "../flags/mod.ts"; diff --git a/std/prettier/main_test.ts b/std/prettier/main_test.ts index dd5197e4d..85712bbef 100644 --- a/std/prettier/main_test.ts +++ b/std/prettier/main_test.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "../testing/asserts.ts"; import { test, runIfMain } from "../testing/mod.ts"; import { copy, emptyDir } from "../fs/mod.ts"; diff --git a/std/prettier/prettier.ts b/std/prettier/prettier.ts index 37b6cd4d6..cce374441 100644 --- a/std/prettier/prettier.ts +++ b/std/prettier/prettier.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. /** * Types are given here because parser files are big * and it's much faster to give TS compiler just type declarations. diff --git a/std/prettier/util.ts b/std/prettier/util.ts index b8f79005d..0d3b01252 100644 --- a/std/prettier/util.ts +++ b/std/prettier/util.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. const { build, run } = Deno; // Runs a command in cross-platform way |