Skip to content

Commit aad579c

Browse files
authored
fix(ci): disable line length rule for platform packages
2 parents 1da84ab + f606c65 commit aad579c

24 files changed

Lines changed: 106 additions & 22 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Build Status](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml/badge.svg)](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml)
55
[![Code Coverage](https://codecov.io/gh/mathtechstudio/local-storage-cache/graph/badge.svg)](https://codecov.io/gh/mathtechstudio/local-storage-cache)
66
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7-
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows-informational)
7+
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows%20%7C%20Linux%20%7C%20Web-informational)
88

99
A comprehensive Flutter package for local storage and caching with advanced features including encryption, multi-space architecture, automatic schema migration, and high-performance query capabilities. Supports Android, iOS, macOS, Windows, Linux, and Web.
1010

packages/local_storage_cache/analysis_options.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ analyzer:
3636
await_only_futures: info
3737
unawaited_futures: info
3838
use_of_void_result: ignore
39+
# Ignore path dependency warning for monorepo development
40+
invalid_dependency: ignore
3941

4042
exclude:
4143
- '**/*.g.dart'

packages/local_storage_cache/pubspec.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: local_storage_cache
22
description: A comprehensive Flutter package for managing local storage and caching with advanced features like encryption, TTL, multi-space architecture, and more.
33
version: 2.0.0
4-
publish_to: none
54
homepage: https://github.com/mathtechstudio/local-storage-cache
65
repository: https://github.com/mathtechstudio/local-storage-cache
76

packages/local_storage_cache_android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ This implementation uses Android Keystore for secure key storage, providing hard
4848

4949
## License
5050

51-
MIT License - see LICENSE file for details.
51+
MIT License - see [LICENSE](LICENSE) file for details.

packages/local_storage_cache_android/analysis_options.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@ include: package:very_good_analysis/analysis_options.yaml
22

33
linter:
44
rules:
5-
public_member_api_docs: true
65
lines_longer_than_80_chars: false
6+
7+
analyzer:
8+
errors:
9+
# Ignore path dependency warning for monorepo development
10+
invalid_dependency: ignore

packages/local_storage_cache_android/pubspec.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: local_storage_cache_android
22
description: Android implementation of the local_storage_cache plugin.
33
version: 2.0.0
4-
publish_to: none
54
homepage: https://github.com/mathtechstudio/local-storage-cache
65

76
resolution: workspace

packages/local_storage_cache_ios/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ This implementation uses iOS Keychain for secure key storage, providing hardware
4949

5050
## License
5151

52-
MIT License - see LICENSE file for details.
52+
MIT License - see [LICENSE](LICENSE) file for details.

packages/local_storage_cache_ios/analysis_options.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@ include: package:very_good_analysis/analysis_options.yaml
22

33
linter:
44
rules:
5-
public_member_api_docs: true
65
lines_longer_than_80_chars: false
6+
7+
analyzer:
8+
errors:
9+
# Ignore path dependency warning for monorepo development
10+
invalid_dependency: ignore

packages/local_storage_cache_ios/pubspec.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: local_storage_cache_ios
22
description: iOS implementation of the local_storage_cache plugin.
33
version: 2.0.0
4-
publish_to: none
54
homepage: https://github.com/mathtechstudio/local-storage-cache
65

76
resolution: workspace

packages/local_storage_cache_linux/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ Biometric authentication is not currently supported on Linux. This feature may b
5252

5353
## License
5454

55-
MIT License - see LICENSE file for details.
55+
MIT License - see [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)