summaryrefslogtreecommitdiff
path: root/std/prettier
diff options
context:
space:
mode:
Diffstat (limited to 'std/prettier')
-rw-r--r--std/prettier/ignore.ts2
-rw-r--r--std/prettier/ignore_test.ts2
-rwxr-xr-xstd/prettier/main.ts2
-rw-r--r--std/prettier/main_test.ts2
-rw-r--r--std/prettier/prettier.ts2
-rw-r--r--std/prettier/util.ts2
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