drtx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit d97d40348a407ee4b8c56c2c2549acbbd4bcf692
Author: Jackson G. Kaindume <seestem@merely.tech>
Date:   Mon,  4 Jul 2022 13:20:22 +0200

initial commit

Diffstat:
A.gitignore | 12++++++++++++
ACHANGELOG.md | 3+++
AREADME.md | 39+++++++++++++++++++++++++++++++++++++++
Aanalysis_options.yaml | 30++++++++++++++++++++++++++++++
Aexample/drtx_example.dart | 6++++++
Alib/drtx.dart | 6++++++
Apubspec.yaml | 14++++++++++++++
7 files changed, 110 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,12 @@ +*~ +doc/api +# Files and directories created by pub. +.dart_tool/ +.packages + +# Conventional directory for build outputs. +build/ + +# Omit committing pubspec.lock for library packages; see +# https://dart.dev/guides/libraries/private-files#pubspeclock. +pubspec.lock diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/README.md b/README.md @@ -0,0 +1,39 @@ +<!-- +This README describes the package. If you publish this package to pub.dev, +this README's contents appear on the landing page for your package. + +For information about how to write a good package README, see the guide for +[writing package pages](https://dart.dev/guides/libraries/writing-package-pages). + +For general information about developing packages, see the Dart guide for +[creating packages](https://dart.dev/guides/libraries/create-library-packages) +and the Flutter guide for +[developing packages and plugins](https://flutter.dev/developing-packages). +--> + +TODO: Put a short description of the package here that helps potential users +know whether this package might be useful for them. + +## Features + +TODO: List what your package can do. Maybe include images, gifs, or videos. + +## Getting started + +TODO: List prerequisites and provide or point to information on how to +start using the package. + +## Usage + +TODO: Include short and useful examples for package users. Add longer examples +to `/example` folder. + +```dart +const like = 'sample'; +``` + +## Additional information + +TODO: Tell users more about the package: where to find more information, how to +contribute to the package, how to file issues, what response they can expect +from the package authors, and more. diff --git a/analysis_options.yaml b/analysis_options.yaml @@ -0,0 +1,30 @@ +# This file configures the static analysis results for your project (errors, +# warnings, and lints). +# +# This enables the 'recommended' set of lints from `package:lints`. +# This set helps identify many issues that may lead to problems when running +# or consuming Dart code, and enforces writing Dart using a single, idiomatic +# style and format. +# +# If you want a smaller set of lints you can change this to specify +# 'package:lints/core.yaml'. These are just the most critical lints +# (the recommended set includes the core lints). +# The core lints are also what is used by pub.dev for scoring packages. + +include: package:lints/recommended.yaml + +# Uncomment the following section to specify additional rules. + +# linter: +# rules: +# - camel_case_types + +# analyzer: +# exclude: +# - path/to/excluded/files/** + +# For more information about the core and recommended set of lints, see +# https://dart.dev/go/core-lints + +# For additional information about configuring this file, see +# https://dart.dev/guides/language/analysis-options diff --git a/example/drtx_example.dart b/example/drtx_example.dart @@ -0,0 +1,6 @@ +import 'package:drtx/drtx.dart'; + +void main() { + var awesome = Awesome(); + print('awesome: ${awesome.isAwesome}'); +} diff --git a/lib/drtx.dart b/lib/drtx.dart @@ -0,0 +1,6 @@ +/// Dart Extras +library drtx; + +export 'src/drtx_base.dart'; + +// TODO: Export any libraries intended for clients of this package. diff --git a/pubspec.yaml b/pubspec.yaml @@ -0,0 +1,14 @@ +name: drtx +description: Dart Extras +version: 1.0.0 +# homepage: https://www.example.com + +environment: + sdk: '>=2.17.0-227.0.dev <3.0.0' + +# dependencies: +# path: ^1.8.0 + +dev_dependencies: + lints: ^2.0.0 + test: ^1.16.0