2023-02-26 01:07

This commit is contained in:
2023-02-26 01:07:56 +09:00
commit 97b4af1d75
9 changed files with 71 additions and 0 deletions

9
hello/.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
# Files and directories created by pub
.dart_tool/
.packages
# Conventional directory for build outputs
build/
# Directory created by dartdoc
doc/api/

3
hello/CHANGELOG.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.0.0
- Initial version, created by Stagehand

4
hello/README.md Normal file
View File

@@ -0,0 +1,4 @@
A simple command-line application.
Created from templates made available by Stagehand under a BSD-style
[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE).

View File

@@ -0,0 +1,14 @@
# Defines a default set of lint rules enforced for
# projects at Google. For details and rationale,
# see https://github.com/dart-lang/pedantic#enabled-lints.
include: package:pedantic/analysis_options.yaml
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
# Uncomment to specify additional rules.
# linter:
# rules:
# - camel_case_types
analyzer:
# exclude:
# - path/to/excluded/files/**

6
hello/bin/hello.dart Normal file
View File

@@ -0,0 +1,6 @@
void main(List<String> arguments) {
int number;
number = 34;
print('number = $number'); // null
}

12
hello/pubspec.lock Normal file
View File

@@ -0,0 +1,12 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
pedantic:
dependency: "direct dev"
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.11.0"
sdks:
dart: ">=2.12.0 <3.0.0"

13
hello/pubspec.yaml Normal file
View File

@@ -0,0 +1,13 @@
name: hello
description: A simple command-line application.
# version: 1.0.0
# homepage: https://www.example.com
environment:
sdk: '>=2.12.0 <3.0.0'
#dependencies:
# path: ^1.7.0
dev_dependencies:
pedantic: ^1.9.0