Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:tenhobi/effective_dart
Browse files Browse the repository at this point in the history
  • Loading branch information
Honza Bittner committed Oct 27, 2019
2 parents 73a036a + 0dbe4c5 commit e14c2d3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.1

- Fix SDK version.
- Enhance README.

## 1.0.0

- Add linst according to current state of the Effective Dart `analysis_options.yaml`.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
[![pub package](https://img.shields.io/pub/v/effective_dart.svg)](https://pub.dartlang.org/packages/effective_dart)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)

This package provides the lints according to the [Effective Dart](https://dart.dev/guides/language/effective-dart) guide.
This package provides links that attempt to comply with all [*Effective Dart*](https://dart.dev/guides/language/effective-dart) guide rules.

This package is inspired by the [pedantic](https://github.com/dart-lang/pedantic) package, which contains lints internally used at Google.
**Be consistent. Be brief.**

> *Note*: This package is inspired by the [pedantic](https://github.com/dart-lang/pedantic) package, which contains lints internally used at Google.
## Using the Lints

Expand All @@ -30,12 +32,20 @@ include: package:effective_dart/analysis_options.1.0.0.yaml

## Unused Lints

The following lints have been considered and will not be enforced:
Following lints have been considered and will not be enforced by this package:

`lines_longer_than_80_chars` might be practical to not follow this rule sometimes for many people.
`lines_longer_than_80_chars` might be practical not to follow for many people.

`unnecessary_getters` has been [disabled](https://github.com/dart-lang/linter/issues/23).

## Badge

Show the world you're following the *Effective Dart* guide → [![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart)

```md
[![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart)
```

## License

Licensed under the [MIT License](LICENSE).
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version: 1.0.1
author: Honza Bittner <git@honzabittner.cz>
repository: https://github.com/tenhobi/effective_dart
issue_tracker: https://github.com/tenhobi/effective_dart/issues
homepage: https://github.com/tenhobi/effective_dart

environment:
sdk: ">=2.0.0 <3.0.0"

0 comments on commit e14c2d3

Please sign in to comment.