Skip to content

Commit 7958f55

Browse files
committed
Created the repository.
0 parents  commit 7958f55

30 files changed

+182
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. Chrome, Safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, Safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is.
12+
For example: I'm always frustrated when [...]
13+
14+
**Describe the solution you'd like**
15+
A clear and concise description of what you would like to happen.
16+
17+
**Describe alternatives you've considered**
18+
A clear and concise description of any alternative solutions or features
19+
you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.

.github/codeowners

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# See: https://help.github.com/en/articles/about-code-owners

.github/contributing.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!--- See: https://help.github.com/en/articles/setting-guidelines-for-repository-contributors --->
2+
3+
# How to contribute

.github/funding.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# See: https://help.github.com/en/articles/displaying-a-sponsor-button-in-your-repository

.github/pull_request_template.md

Whitespace-only changes.

.github/security.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!--- See: https://help.github.com/en/articles/adding-a-security-policy-to-your-repository --->
2+
3+
# How to report a security vulnerability

.github/support.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<!--- See: https://help.github.com/en/articles/adding-support-resources-to-your-project --->
2+
3+
# How to get support

.gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# macOS
2+
.DS_Store
3+
4+
# Editor backup files
5+
*~
6+
7+
# Dart artifacts
8+
.dart_tool/
9+
.packages
10+
build/
11+
pubspec.lock

.test_config

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"test_package": true
3+
}

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See: https://docs.travis-ci.com/user/languages/dart/
2+
language: dart
3+
sudo: false
4+
dart:
5+
- stable
6+
dart_task:
7+
- test
8+
- dartfmt
9+
- dartanalyze
10+
branches:
11+
only: [master]
12+
cache:
13+
directories:
14+
- $HOME/.pub-cache

AUTHORS

Whitespace-only changes.

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Changelog
2+
---------
3+
4+
All notable changes to this project will be documented in this file.
5+
6+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
7+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

CREDITS.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Credits
2+
=======

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
PANDOC ?= pandoc
2+
PUB ?= pub
3+
4+
check:
5+
$(PUB) run test
6+
7+
.PHONY: check
8+
.SECONDARY:
9+
.SUFFIXES:

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Foobar
2+
======
3+
4+
[![Project license](https://img.shields.io/badge/license-Public%20Domain-blue.svg)](https://unlicense.org)
5+
[![Pub package](https://img.shields.io/pub/v/foobar.svg)](https://pub.dev/packages/foobar)
6+
[![Dartdoc reference](https://img.shields.io/badge/dartdoc-reference-blue.svg)](https://pub.dev/documentation/foobar/latest/)
7+
[![Travis CI build status](https://img.shields.io/travis/drydart/foobar/master.svg)](https://travis-ci.org/drydart/foobar)

TODO.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
To-Dos
2+
======

UNLICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <https://unlicense.org/>

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.0

bin/.gitkeep

Whitespace-only changes.

doc/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
api

etc/.gitkeep

Whitespace-only changes.

example/.gitkeep

Whitespace-only changes.

lib/.gitkeep

Whitespace-only changes.

lib/foobar.dart

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* This is free and unencumbered software released into the public domain. */
2+
3+
library foobar;

lib/src/.gitkeep

Whitespace-only changes.

pubspec.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See: https://dart.dev/tools/pub/pubspec
2+
name: foobar
3+
version: 0.0.0
4+
description: >-
5+
TODO for Dart (60-180 characters)
6+
homepage: https://github.com/drydart/foobar
7+
repository: https://github.com/drydart/foobar
8+
issue_tracker: https://github.com/drydart/foobar/issues
9+
documentation:
10+
dependencies:
11+
meta: ^1.1.6
12+
dev_dependencies:
13+
test: any
14+
dependency_overrides:
15+
environment:
16+
sdk: '>=2.8.1 <3.0.0'
17+
executables:
18+
publish_to: none

test/.gitkeep

Whitespace-only changes.

test/foobar_test.dart

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* This is free and unencumbered software released into the public domain. */
2+
3+
import 'package:test/test.dart';
4+
5+
import 'package:foobar/foobar.dart';
6+
7+
void main() {
8+
// TODO
9+
}

tool/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)