Skip to content

Commit 8e934c5

Browse files
upgrade: update dependency prettier to v3.8.1 (#442)
* upgrade: update dependency prettier to v3.8.1 * [autofix.ci] apply automated fixes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 8db0b96 commit 8e934c5

File tree

7 files changed

+37
-37
lines changed

7 files changed

+37
-37
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"devDependencies": {
88
"@prettier/plugin-xml": "3.4.2",
9-
"prettier": "3.6.2",
9+
"prettier": "3.8.1",
1010
"prettier-plugin-packagejson": "2.5.22"
1111
}
1212
}

packages/nilts/README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -77,22 +77,22 @@ Some rules support quick fixes in your IDE.
7777

7878
| Rule name | Overview | Target SDK | Rule type | Maturity level | Severity | Quick fix |
7979
| ------------------------------------------------------------------------------- | :----------------------------------------------------------------------------- | :-------------------------: | :-------: | :------------: | :------: | :-------: |
80-
| [defined_async_callback_type](#defined_async_callback_type) | Checks `Future<void> Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
81-
| [defined_async_value_getter_type](#defined_async_value_getter_type) | Checks `Future<T> Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
82-
| [defined_async_value_setter_type](#defined_async_value_setter_type) | Checks `Future<void> Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
83-
| [defined_value_changed_type](#defined_value_changed_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
84-
| [defined_value_getter_type](#defined_value_getter_type) | Checks `T Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
85-
| [defined_value_setter_type](#defined_value_setter_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
86-
| [defined_void_callback_type](#defined_void_callback_type) | Checks `void Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
87-
| [fixed_text_scale_rich_text](#fixed_text_scale_rich_text) | Checks usage of `textScaler` or `textScaleFactor` in `RichText` constructor. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
88-
| [flaky_tests_with_set_up_all](#flaky_tests_with_set_up_all) | Checks `setUpAll` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
89-
| [low_readability_numeric_literals](#low_readability_numeric_literals) | Checks numeric literals with 5 or more digits. | >= Dart 3.6.0 | Practice | Stable | Info | ✅️ |
90-
| [no_support_multi_text_direction](#no_support_multi_text_direction) | Checks if supports `TextDirection` changes. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
91-
| [no_support_web_platform_check](#no_support_web_platform_check) | Checks if `Platform.isXxx` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
92-
| [open_type_hierarchy](#open_type_hierarchy) | Checks if class modifiers exist (final, sealed, etc.) | Any versions nilts supports | Practice | Stable | Info | ✅️ |
93-
| [shrink_wrapped_scroll_view](#shrink_wrapped_scroll_view) | Checks the content of the scroll view is shrink wrapped. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
94-
| [unnecessary_rebuilds_from_media_query](#unnecessary_rebuilds_from_media_query) | Checks `MediaQuery.xxxOf(context)` or `MediaQuery.maybeXxxOf(context)` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
95-
| [unsafe_null_assertion](#unsafe_null_assertion) | Checks usage of the `!` operator for forced type casting. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
80+
| [defined_async_callback_type](#defined_async_callback_type) | Checks `Future<void> Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
81+
| [defined_async_value_getter_type](#defined_async_value_getter_type) | Checks `Future<T> Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
82+
| [defined_async_value_setter_type](#defined_async_value_setter_type) | Checks `Future<void> Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
83+
| [defined_value_changed_type](#defined_value_changed_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
84+
| [defined_value_getter_type](#defined_value_getter_type) | Checks `T Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
85+
| [defined_value_setter_type](#defined_value_setter_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
86+
| [defined_void_callback_type](#defined_void_callback_type) | Checks `void Function()` definitions. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
87+
| [fixed_text_scale_rich_text](#fixed_text_scale_rich_text) | Checks usage of `textScaler` or `textScaleFactor` in `RichText` constructor. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
88+
| [flaky_tests_with_set_up_all](#flaky_tests_with_set_up_all) | Checks `setUpAll` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
89+
| [low_readability_numeric_literals](#low_readability_numeric_literals) | Checks numeric literals with 5 or more digits. | >= Dart 3.6.0 | Practice | Stable | Info | ✅️ |
90+
| [no_support_multi_text_direction](#no_support_multi_text_direction) | Checks if supports `TextDirection` changes. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
91+
| [no_support_web_platform_check](#no_support_web_platform_check) | Checks if `Platform.isXxx` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
92+
| [open_type_hierarchy](#open_type_hierarchy) | Checks if class modifiers exist (final, sealed, etc.) | Any versions nilts supports | Practice | Stable | Info | ✅️ |
93+
| [shrink_wrapped_scroll_view](#shrink_wrapped_scroll_view) | Checks the content of the scroll view is shrink wrapped. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
94+
| [unnecessary_rebuilds_from_media_query](#unnecessary_rebuilds_from_media_query) | Checks `MediaQuery.xxxOf(context)` or `MediaQuery.maybeXxxOf(context)` usages. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
95+
| [unsafe_null_assertion](#unsafe_null_assertion) | Checks usage of the `!` operator for forced type casting. | Any versions nilts supports | Practice | Stable | Info | ✅️ |
9696
| [unstable_enum_name](#unstable_enum_name) | Checks usage of enum name property. | Any versions nilts supports | Practice | Stable | Info | ❌ |
9797
| [unstable_enum_values](#unstable_enum_values) | Checks usage of enum values property. | Any versions nilts supports | Practice | Stable | Info | ❌ |
9898

packages/nilts/README_CUSTOM_LINT.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -101,22 +101,22 @@ Some rules support quick fixes in your IDE.
101101

102102
| Rule name | Overview | Target SDK | Rule type | Maturity level | Quick fix |
103103
| ------------------------------------------------------------------------------- | :----------------------------------------------------------------------------- | :----------------------------: | :-------: | :------------: | :-------: |
104-
| [defined_async_callback_type](#defined_async_callback_type) | Checks `Future<void> Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
105-
| [defined_async_value_getter_type](#defined_async_value_getter_type) | Checks `Future<T> Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
106-
| [defined_async_value_setter_type](#defined_async_value_setter_type) | Checks `Future<void> Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
107-
| [defined_value_changed_type](#defined_value_changed_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
108-
| [defined_value_getter_type](#defined_value_getter_type) | Checks `T Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
109-
| [defined_value_setter_type](#defined_value_setter_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
110-
| [defined_void_callback_type](#defined_void_callback_type) | Checks `void Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
111-
| [fixed_text_scale_rich_text](#fixed_text_scale_rich_text) | Checks usage of `textScaler` or `textScaleFactor` in `RichText` constructor. | Any versions nilts supports | Practice | Experimental | ✅️ |
112-
| [flaky_tests_with_set_up_all](#flaky_tests_with_set_up_all) | Checks `setUpAll` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
113-
| [low_readability_numeric_literals](#low_readability_numeric_literals) | Checks numeric literals with 5 or more digits. | >= Flutter 3.27.0 (Dart 3.6.0) | Practice | Experimental | ✅️ |
114-
| [no_support_multi_text_direction](#no_support_multi_text_direction) | Checks if supports `TextDirection` changes. | Any versions nilts supports | Practice | Experimental | ✅️ |
115-
| [no_support_web_platform_check](#no_support_web_platform_check) | Checks if `Platform.isXxx` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
116-
| [open_type_hierarchy](#open_type_hierarchy) | Checks if class modifiers exist (final, sealed, etc.) | Any versions nilts supports | Practice | Experimental | ✅️ |
117-
| [shrink_wrapped_scroll_view](#shrink_wrapped_scroll_view) | Checks the content of the scroll view is shrink wrapped. | Any versions nilts supports | Practice | Experimental | ✅️ |
118-
| [unnecessary_rebuilds_from_media_query](#unnecessary_rebuilds_from_media_query) | Checks `MediaQuery.xxxOf(context)` or `MediaQuery.maybeXxxOf(context)` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
119-
| [unsafe_null_assertion](#unsafe_null_assertion) | Checks usage of the `!` operator for forced type casting. | Any versions nilts supports | Practice | Experimental | ✅️ |
104+
| [defined_async_callback_type](#defined_async_callback_type) | Checks `Future<void> Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
105+
| [defined_async_value_getter_type](#defined_async_value_getter_type) | Checks `Future<T> Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
106+
| [defined_async_value_setter_type](#defined_async_value_setter_type) | Checks `Future<void> Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
107+
| [defined_value_changed_type](#defined_value_changed_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
108+
| [defined_value_getter_type](#defined_value_getter_type) | Checks `T Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
109+
| [defined_value_setter_type](#defined_value_setter_type) | Checks `void Function(T value)` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
110+
| [defined_void_callback_type](#defined_void_callback_type) | Checks `void Function()` definitions. | Any versions nilts supports | Practice | Experimental | ✅️ |
111+
| [fixed_text_scale_rich_text](#fixed_text_scale_rich_text) | Checks usage of `textScaler` or `textScaleFactor` in `RichText` constructor. | Any versions nilts supports | Practice | Experimental | ✅️ |
112+
| [flaky_tests_with_set_up_all](#flaky_tests_with_set_up_all) | Checks `setUpAll` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
113+
| [low_readability_numeric_literals](#low_readability_numeric_literals) | Checks numeric literals with 5 or more digits. | >= Flutter 3.27.0 (Dart 3.6.0) | Practice | Experimental | ✅️ |
114+
| [no_support_multi_text_direction](#no_support_multi_text_direction) | Checks if supports `TextDirection` changes. | Any versions nilts supports | Practice | Experimental | ✅️ |
115+
| [no_support_web_platform_check](#no_support_web_platform_check) | Checks if `Platform.isXxx` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
116+
| [open_type_hierarchy](#open_type_hierarchy) | Checks if class modifiers exist (final, sealed, etc.) | Any versions nilts supports | Practice | Experimental | ✅️ |
117+
| [shrink_wrapped_scroll_view](#shrink_wrapped_scroll_view) | Checks the content of the scroll view is shrink wrapped. | Any versions nilts supports | Practice | Experimental | ✅️ |
118+
| [unnecessary_rebuilds_from_media_query](#unnecessary_rebuilds_from_media_query) | Checks `MediaQuery.xxxOf(context)` or `MediaQuery.maybeXxxOf(context)` usages. | Any versions nilts supports | Practice | Experimental | ✅️ |
119+
| [unsafe_null_assertion](#unsafe_null_assertion) | Checks usage of the `!` operator for forced type casting. | Any versions nilts supports | Practice | Experimental | ✅️ |
120120
| [unstable_enum_name](#unstable_enum_name) | Checks usage of enum name property. | Any versions nilts supports | Practice | Experimental | ❌ |
121121
| [unstable_enum_values](#unstable_enum_values) | Checks usage of enum values property. | Any versions nilts supports | Practice | Experimental | ❌ |
122122

packages/nilts_clock/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Some rules support quick fixes in your IDE.
7777

7878
| Rule name | Overview | Target SDK | Rule type | Maturity level | Severity | Quick fix |
7979
| ------------------------------------------- | :---------------------------------- | :-------------------------------: | :--------: | :------------: | :------: | :-------: |
80-
| [using_date_time_now](#using_date_time_now) | Checks if `DateTime.now()` is used. | Any versions nilts_clock supports | ErrorProne | Stable | Info | ✅️ |
80+
| [using_date_time_now](#using_date_time_now) | Checks if `DateTime.now()` is used. | Any versions nilts_clock supports | ErrorProne | Stable | Info | ✅️ |
8181

8282
### Details
8383

packages/nilts_clock/README_CUSTOM_LINT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Some rules support quick fixes in your IDE.
101101

102102
| Rule name | Overview | Target SDK | Rule type | Maturity level | Quick fix |
103103
| ------------------------------------------- | :---------------------------------- | :-------------------------------: | :--------: | :------------: | :-------: |
104-
| [using_date_time_now](#using_date_time_now) | Checks if `DateTime.now()` is used. | Any versions nilts_clock supports | ErrorProne | Experimental | ✅️ |
104+
| [using_date_time_now](#using_date_time_now) | Checks if `DateTime.now()` is used. | Any versions nilts_clock supports | ErrorProne | Experimental | ✅️ |
105105

106106
### Details
107107

0 commit comments

Comments
 (0)