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

Commit eb9697e

Browse files
authoredDec 21, 2019
Docs improvement (#11)
* Add consider lints, fix bare url, update mail * Update patch version
1 parent 3a2e326 commit eb9697e

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed
 

‎CODE_OF_CONDUCT.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58-
reported by contacting the project team at git@honzabittner.cz. All
58+
reported by contacting the project team at git@tenhobi.dev. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
6161
obligated to maintain confidentiality with regard to the reporter of an incident.
@@ -68,9 +68,9 @@ members of the project's leadership.
6868
## Attribution
6969

7070
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
71+
available at <https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>
7272

7373
[homepage]: https://www.contributor-covenant.org
7474

7575
For answers to common questions about this code of conduct, see
76-
https://www.contributor-covenant.org/faq
76+
<https://www.contributor-covenant.org/faq>

‎CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Contributing
22

3-
When contributing to this repository, please first discuss the change you wish to make via issue or any other method with the owners of this repository before making a change.
3+
When contributing to this repository, please first discuss the change you wish to make via issue or any other method with the owners of this repository before making a change.
44

55
Please note we have a code of conduct, please follow it in all your interactions with the project.
66

77
## Pull Request Process
88

99
1. Ensure any install or build dependencies are removed before the end of the layer when doing a build.
1010
1. Increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/).
11-

‎README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,23 @@ Or, if you using e.g. continuous builds, they will likely fail whenever a new ve
3232
include: package:effective_dart/analysis_options.1.1.0.yaml
3333
```
3434

35+
## Consider lints
36+
37+
Consider guidelines are practices that you might or might not want to follow, depending on circumstances, precedents, and your own preference.
38+
39+
Following lints are not enforced by this package:
40+
41+
- [`prefer_expression_function_bodies`](https://dart-lang.github.io/linter/lints/prefer_expression_function_bodies.html)
42+
- [`prefer_typing_uninitialized_variables`](https://dart-lang.github.io/linter/lints/prefer_typing_uninitialized_variables.html)
43+
- [`use_function_type_syntax_for_parameters`](https://dart-lang.github.io/linter/lints/use_function_type_syntax_for_parameters.html)
44+
3545
## Unused Lints
3646

3747
Following lints have been considered and will not be enforced by this package:
3848

39-
- `lines_longer_than_80_chars` might be practical not to follow for many people
40-
- `unnecessary_getters` has been [disabled](https://github.com/dart-lang/linter/issues/23)
41-
- `comment_references` is way too restrictive and comment references are handled in different ways in tools ([see this issue](https://github.com/dart-lang/sdk/issues/36974))
49+
- [`lines_longer_than_80_chars`](https://dart-lang.github.io/linter/lints/lines_longer_than_80_chars.html) might be practical not to follow for many people
50+
- [`unnecessary_getters`](https://dart-lang.github.io/linter/lints/unnecessary_getters.html) has been [disabled](https://github.com/dart-lang/linter/issues/23)
51+
- [`comment_references`](https://dart-lang.github.io/linter/lints/comment_references.html) is way too restrictive and comment references are handled in different ways in tools ([see this issue](https://github.com/dart-lang/sdk/issues/36974))
4252

4353
## Suppressing Lints
4454

‎pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: effective_dart
22
description: This package provides the lints according to the Effective Dart guide.
3-
version: 1.1.1
4-
author: Honza Bittner <git@honzabittner.cz>
3+
version: 1.1.2
4+
author: Honza Bittner <git@tenhobi.cz>
55
repository: https://github.com/tenhobi/effective_dart
66
issue_tracker: https://github.com/tenhobi/effective_dart/issues
77
homepage: https://github.com/tenhobi/effective_dart

0 commit comments

Comments
 (0)
This repository has been archived.