Skip to content

Commit d2fc595

Browse files
committed
author final pass
1 parent 535e8e5 commit d2fc595

37 files changed

+304
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Files and directories created by pub
2+
.dart_tool/
3+
.packages
4+
5+
# Conventional directory for build outputs
6+
build/
7+
8+
# Directory created by dartdoc
9+
doc/api/
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Dart",
9+
"type": "dart",
10+
"request": "launch",
11+
"program": "bin/challenge.dart"
12+
}
13+
]
14+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
- Initial version, created by Stagehand
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
A simple command-line application.
2+
3+
Created from templates made available by Stagehand under a BSD-style
4+
[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE).
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Defines a default set of lint rules enforced for
2+
# projects at Google. For details and rationale,
3+
# see https://github.com/dart-lang/pedantic#enabled-lints.
4+
include: package:pedantic/analysis_options.yaml
5+
6+
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
7+
# Uncomment to specify additional rules.
8+
# linter:
9+
# rules:
10+
# - camel_case_types
11+
12+
analyzer:
13+
# exclude:
14+
# - path/to/excluded/files/**
File renamed without changes.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by pub
2+
# See https://dart.dev/tools/pub/glossary#lockfile
3+
packages:
4+
meta:
5+
dependency: transitive
6+
description:
7+
name: meta
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "1.2.3"
11+
pedantic:
12+
dependency: "direct dev"
13+
description:
14+
name: pedantic
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "1.9.2"
18+
sdks:
19+
dart: ">=2.8.1 <3.0.0"
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: challenge
2+
description: A simple command-line application.
3+
# version: 1.0.0
4+
# homepage: https://www.example.com
5+
6+
environment:
7+
sdk: '>=2.8.1 <3.0.0'
8+
9+
#dependencies:
10+
# path: ^1.7.0
11+
12+
dev_dependencies:
13+
pedantic: ^1.9.0
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Files and directories created by pub
2+
.dart_tool/
3+
.packages
4+
5+
# Conventional directory for build outputs
6+
build/
7+
8+
# Directory created by dartdoc
9+
doc/api/

0 commit comments

Comments
 (0)