Skip to content
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
Expand Up @@ -2,6 +2,10 @@

All notable changes to the `theodo_analysis` package will be documented in this file.

## 1.8.0

- fix: dart rules lints were broken, re-add them

## 1.7.0

- feat: Upgrade dcm to 1.32.0 and add news rules
Expand Down
8 changes: 1 addition & 7 deletions lib/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ linter:
- strict_top_level_inference
- unnecessary_underscores
- unintended_html_in_doc_comment
- avoid-unnecessary-null-checks
- always_declare_return_types
- always_put_required_named_parameters_first
- always_use_package_imports
Expand All @@ -40,9 +39,7 @@ linter:
- avoid_field_initializers_in_const_classes
- avoid_final_parameters
- avoid_function_literals_in_foreach_calls
- avoid_implementing_value_types:
excludes:
- '**m/*mocks.dart'
- avoid_implementing_value_types
- avoid_init_to_null
- avoid_js_rounded_ints
- avoid_multiple_declarations_per_line
Expand Down Expand Up @@ -84,7 +81,6 @@ linter:
- empty_catches
- empty_constructor_bodies
- empty_statements
- enable_null_safety
- eol_at_end_of_file
- exhaustive_cases
- file_names
Expand Down Expand Up @@ -117,7 +113,6 @@ linter:
- one_member_abstracts
- only_throw_errors
- overridden_fields
- package_api_docs
- package_names
- package_prefixed_library_names
- parameter_assignments
Expand Down Expand Up @@ -199,7 +194,6 @@ linter:
- unnecessary_to_list_in_spreads
- unreachable_from_main
- unrelated_type_equality_checks
- unsafe_html
- use_build_context_synchronously
- use_colored_box
- use_decorated_box
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: theodo_analysis
description: Lint and dcm rules for Dart and Flutter used internally at Theodo Apps.
version: 1.7.0
version: 1.8.0
homepage: https://github.com/bamlab/theodo_analysis
repository: https://github.com/bamlab/theodo_analysis

Expand Down
4 changes: 2 additions & 2 deletions test/src/theodo_analysis_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ignore_for_file: prefer_const_constructors
// ignore_for_file: prefer_const_constructors, avoid-misused-test-matchers

import 'package:theodo_analysis/theodo_analysis.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:theodo_analysis/theodo_analysis.dart';

void main() {
group('TheodoAnalysis', () {
Expand Down