From 00e21aa2f73c94f644ce4602ea15dbe9af3bb9b8 Mon Sep 17 00:00:00 2001 From: James Aprosail Date: Fri, 10 May 2024 11:40:21 +0800 Subject: [PATCH] fix lint avoid conflict with core --- analysis_options.yaml | 4 ---- example/color_example.dart | 2 ++ example/font_example.dart | 2 ++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index 645fde9..572dd23 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,5 +1 @@ include: package:lints/recommended.yaml - -linter: - rules: - curly_braces_in_flow_control_structures: false diff --git a/example/color_example.dart b/example/color_example.dart index 35aa94e..bee9cbb 100644 --- a/example/color_example.dart +++ b/example/color_example.dart @@ -1,3 +1,5 @@ +// ignore_for_file: curly_braces_in_flow_control_structures + import 'package:terminal_decorate/terminal_decorate.dart'; void main() => colorExample(); diff --git a/example/font_example.dart b/example/font_example.dart index dd5b8a5..802049f 100644 --- a/example/font_example.dart +++ b/example/font_example.dart @@ -1,3 +1,5 @@ +// ignore_for_file: curly_braces_in_flow_control_structures + import 'package:terminal_decorate/terminal_decorate.dart'; void main() => fontExample();