diff --git a/devtools_options.yaml b/devtools_options.yaml new file mode 100644 index 0000000..fa0b357 --- /dev/null +++ b/devtools_options.yaml @@ -0,0 +1,3 @@ +description: This file stores settings for Dart & Flutter DevTools. +documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states +extensions: diff --git a/packages/auth/.gitignore b/packages/auth/.gitignore new file mode 100644 index 0000000..3cceda5 --- /dev/null +++ b/packages/auth/.gitignore @@ -0,0 +1,7 @@ +# https://dart.dev/guides/libraries/private-files +# Created by `dart pub` +.dart_tool/ + +# Avoid committing pubspec.lock for library packages; see +# https://dart.dev/guides/libraries/private-files#pubspeclock. +pubspec.lock diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md new file mode 100644 index 0000000..effe43c --- /dev/null +++ b/packages/auth/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/packages/auth/README.md b/packages/auth/README.md new file mode 100644 index 0000000..8831761 --- /dev/null +++ b/packages/auth/README.md @@ -0,0 +1,39 @@ + + +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/packages/auth/analysis_options.yaml b/packages/auth/analysis_options.yaml new file mode 100644 index 0000000..dee8927 --- /dev/null +++ b/packages/auth/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/packages/auth/example/auth_example.dart b/packages/auth/example/auth_example.dart new file mode 100644 index 0000000..9733c86 --- /dev/null +++ b/packages/auth/example/auth_example.dart @@ -0,0 +1,5 @@ +import 'package:auth/auth.dart'; + +void main() { + +} diff --git a/packages/auth/lib/auth.dart b/packages/auth/lib/auth.dart new file mode 100644 index 0000000..34f09d1 --- /dev/null +++ b/packages/auth/lib/auth.dart @@ -0,0 +1,5 @@ +/// Support for doing something awesome. +/// +/// More dartdocs go here. +library; + diff --git a/packages/auth/pubspec.yaml b/packages/auth/pubspec.yaml new file mode 100644 index 0000000..2179965 --- /dev/null +++ b/packages/auth/pubspec.yaml @@ -0,0 +1,15 @@ +name: auth +description: A starting point for Dart libraries or applications. +version: 1.0.0 +# repository: https://github.com/my_org/my_repo + +environment: + sdk: ^3.7.2 + +# Add regular dependencies here. +dependencies: + # path: ^1.8.0 + +dev_dependencies: + lints: ^5.0.0 + test: ^1.24.0 diff --git a/packages/auth/test/auth_test.dart b/packages/auth/test/auth_test.dart new file mode 100644 index 0000000..12ebb82 --- /dev/null +++ b/packages/auth/test/auth_test.dart @@ -0,0 +1,8 @@ +import 'package:auth/auth.dart'; +import 'package:test/test.dart'; + +void main() { + group('A group of tests', () { + + }); +}