Skip to content

Commit 55ce6ff

Browse files
committed
fix(ci): disable line length rule for platform packages
- Add 'lines_longer_than_80_chars: false' to all platform packages - Fixes analyzer errors about long import lines - Platform packages have long package names that exceed 80 chars
1 parent acc8c9c commit 55ce6ff

7 files changed

Lines changed: 28 additions & 0 deletions

File tree

packages/local_storage_cache_android/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_ios/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_linux/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_macos/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_platform_interface/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_web/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

packages/local_storage_cache_windows/analysis_options.yaml

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

3+
linter:
4+
rules:
5+
lines_longer_than_80_chars: false
6+
37
analyzer:
48
errors:
59
# Ignore path dependency warning for monorepo development

0 commit comments

Comments
 (0)