summaryrefslogtreecommitdiffstats
path: root/testing/resources/dart_repo
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-30 16:53:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-30 16:53:19 +0000
commit02d5100afa71d1343de4066b812cd4cdc774d812 (patch)
tree6bccae957398fab29aaa226fb0bd65f0c258a36a /testing/resources/dart_repo
parentAdding upstream version 2.21.0. (diff)
downloadpre-commit-764fce61802cdd104058f3277dda535e1944334f.tar.xz
pre-commit-764fce61802cdd104058f3277dda535e1944334f.zip
Adding upstream version 3.0.2.upstream/3.0.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--testing/resources/dart_repo/.pre-commit-hooks.yaml4
-rw-r--r--testing/resources/dart_repo/bin/hello-world-dart.dart6
-rw-r--r--testing/resources/dart_repo/pubspec.yaml10
3 files changed, 0 insertions, 20 deletions
diff --git a/testing/resources/dart_repo/.pre-commit-hooks.yaml b/testing/resources/dart_repo/.pre-commit-hooks.yaml
deleted file mode 100644
index e0dc5a2..0000000
--- a/testing/resources/dart_repo/.pre-commit-hooks.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-- id: hello-world-dart
- name: hello world dart
- entry: hello-world-dart
- language: dart
diff --git a/testing/resources/dart_repo/bin/hello-world-dart.dart b/testing/resources/dart_repo/bin/hello-world-dart.dart
deleted file mode 100644
index 5d8d6a6..0000000
--- a/testing/resources/dart_repo/bin/hello-world-dart.dart
+++ /dev/null
@@ -1,6 +0,0 @@
-import 'package:ansicolor/ansicolor.dart';
-
-void main() {
- AnsiPen pen = new AnsiPen()..red();
- print("hello hello " + pen("world"));
-}
diff --git a/testing/resources/dart_repo/pubspec.yaml b/testing/resources/dart_repo/pubspec.yaml
deleted file mode 100644
index bc719d0..0000000
--- a/testing/resources/dart_repo/pubspec.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-environment:
- sdk: '>=2.10.0 <3.0.0'
-
-name: hello_world_dart
-
-executables:
- hello-world-dart:
-
-dependencies:
- ansicolor: ^2.0.1