Skip to content

Commit 5a692d8

Browse files
Merge remote-tracking branch 'origin/master'
2 parents def6583 + 54d3a54 commit 5a692d8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.4
2+
3+
- Removed deprecated lints:
4+
- `always_require_non_null_named_parameters`
5+
- `avoid_returning_null_for_future`
6+
17
## 0.1.3
28

39
- Bumped custom_lint package to 0.6.0 version

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Flutter/Dart lints configuration based on software engineering industry standard
88
# Documentation
99

1010
For more detailed information and guidelines on using Solid Lints, please refer to the documentation:
11-
* https://solid-software.github.io/solid_lints/docs/intro
11+
* https://lints.solid.software
1212

1313
# Usage
1414

@@ -36,6 +36,7 @@ Then you can see suggestions in your IDE or you can run checks manually:
3636

3737
```bash
3838
dart analyze;
39+
dart run custom_lint;
3940
```
4041

4142
# Badge

lib/analysis_options.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ linter:
9595
rules:
9696
- always_declare_return_types
9797
- always_put_required_named_parameters_first
98-
- always_require_non_null_named_parameters
9998
- always_use_package_imports
10099
- annotate_overrides
101100
- avoid_bool_literals_in_conditional_expressions
@@ -121,7 +120,6 @@ linter:
121120
- avoid_relative_lib_imports
122121
- avoid_renaming_method_parameters
123122
- avoid_return_types_on_setters
124-
- avoid_returning_null_for_future
125123
- avoid_returning_null_for_void
126124
- avoid_setters_without_getters
127125
- avoid_shadowing_type_parameters

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: solid_lints
22
description:
33
Lints for Dart and Flutter based on software industry standards and best
44
practices.
5-
version: 0.1.3
5+
version: 0.1.4
66
homepage: https://github.com/solid-software/solid_lints/
77
documentation: https://solid-software.github.io/solid_lints/docs/intro
88
topics: [lints, linter, lint, analysis, analyzer]

0 commit comments

Comments
 (0)