Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop package:pedantic, use package:lints #120

Merged
merged 1 commit into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.1

* Drop package:pedantic and use package:lints instead.

# 1.0.0

* Stable null safety release.
Expand Down
3 changes: 2 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include: package:pedantic/analysis_options.yaml
include: package:lints/recommended.yaml
analyzer:
strong-mode:
implicit-casts: false
Expand All @@ -12,6 +12,7 @@ analyzer:
linter:
rules:
# comment_references # https://github.com/dart-lang/sdk/issues/39467
- depend_on_referenced_packages
- prefer_generic_function_type_aliases
- prefer_typing_uninitialized_variables
- unnecessary_const
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: watcher
version: 1.0.0
version: 1.0.1

description: >-
A file system watcher. It monitors changes to contents of directories and
sends notifications when files have been added, removed, or modified.
repository: https://github.com/dart-lang/watcher

environment:
sdk: '>=2.12.0-0 <3.0.0'
sdk: '>=2.14.0 <3.0.0'

dependencies:
async: ^2.5.0
path: ^1.8.0
pedantic: ^1.10.0

dev_dependencies:
lints: ^1.0.0
benchmark_harness: ^2.0.0
test: ^1.16.0
test_descriptor: ^2.0.0-nullsafety
Expand Down