-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1062 from nextcloud/docs/lint_dartdoc_errors
- Loading branch information
Showing
13 changed files
with
187 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
include: package:neon_lints/dartdoc_options.yaml | ||
|
||
dartdoc: | ||
nodoc: ['lib/l10n/*.dart'] | ||
showUndocumentedCategories: true | ||
ignore: | ||
## Errors that are ignored: | ||
## Warnings that are ignored: | ||
- reexported-private-api-across-packages | ||
## Default ignores for dartdoc: | ||
errors: | ||
## Default errors of dartdoc: | ||
- duplicate-file | ||
- invalid-parameter | ||
- tool-error | ||
- unresolved-export | ||
## Warnings that are elevated to errors: | ||
- ambiguous-doc-reference | ||
- ambiguous-reexport | ||
- broken-link | ||
- category-order-gives-missing-package-name | ||
- deprecated | ||
- ignored-canonical-for | ||
- missing-from-search-index | ||
- no-canonical-found | ||
- no-documentable-libraries | ||
- no-library-level-docs | ||
- orphaned-file | ||
- unknown-file | ||
- unknown-macro | ||
- unresolved-doc-reference | ||
## Ignores that are elevated to errors: | ||
# - type-as-html # broken, https://github.com/dart-lang/dartdoc/issues/3545 | ||
- missing-constant-constructor | ||
- missing-code-block-language |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
// ignore: unnecessary_library_directive | ||
/// Configuration for using `package:build`-compatible build systems. | ||
/// | ||
/// See: | ||
/// * [build_runner](https://pub.dev/packages/build_runner) | ||
/// | ||
/// This library is **not** intended to be imported by typical end-users unless | ||
/// you are creating a custom compilation pipeline. See documentation for | ||
/// details, and `build.yaml` for how these builders are configured by default. | ||
library dynamite; | ||
|
||
export 'src/openapi_builder.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/// The Neon model definitions. | ||
/// | ||
/// To use, import `import 'package:neon/models.dart';`. | ||
/// | ||
/// This library provides basic data models and interfaces to build a neon | ||
/// client. | ||
/// | ||
/// {@canonicalFor label_builder.LabelBuilder} | ||
library models; | ||
|
||
export 'package:neon/src/models/account.dart' hide Credentials, LoginQRcode; | ||
export 'package:neon/src/models/app_implementation.dart'; | ||
export 'package:neon/src/models/label_builder.dart'; | ||
export 'package:neon/src/models/notifications_interface.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
packages/neon/neon_notifications/lib/neon_notifications.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters