Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
committed Jan 13, 2025
1 parent 490486f commit 4679078
Show file tree
Hide file tree
Showing 18 changed files with 68 additions and 130 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
37 changes: 8 additions & 29 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.

include: package:lints/recommended.yaml

# Uncomment the following section to specify additional rules.

# linter:
# rules:
# - camel_case_types

# analyzer:
# exclude:
# - path/to/excluded/files/**

# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints

# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options
analyzer:
exclude:
- test
- dev
- templates
linter:
rules:
- public_member_api_docs
4 changes: 3 additions & 1 deletion doodstream_client_documentation/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
31 changes: 6 additions & 25 deletions doodstream_client_documentation/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,9 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.

# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml

linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule

# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options
- public_member_api_docs
analyzer:
exclude:
- test
- dev
- templates
4 changes: 3 additions & 1 deletion doodstream_client_documentation/android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 3 additions & 1 deletion doodstream_client_documentation/ios/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 3 additions & 1 deletion doodstream_client_documentation/linux/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 3 additions & 1 deletion doodstream_client_documentation/macos/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 2 additions & 2 deletions doodstream_client_documentation/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies:
sdk: 'flutter'
cupertino_icons: '^1.0.6'
path: '^1.9.0'
general_lib: '^0.0.56'
general_lib_flutter: '^0.0.37'
general_lib: '^0.0.59'
general_lib_flutter: '^0.0.40'
documentation: '^0.0.2'
dev_dependencies:
flutter_test:
Expand Down
4 changes: 3 additions & 1 deletion doodstream_client_documentation/windows/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 3 additions & 1 deletion package/doodstream/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
37 changes: 8 additions & 29 deletions package/doodstream/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.

include: package:lints/recommended.yaml

# Uncomment the following section to specify additional rules.

# linter:
# rules:
# - camel_case_types

# analyzer:
# exclude:
# - path/to/excluded/files/**

# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints

# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options
analyzer:
exclude:
- test
- dev
- templates
linter:
rules:
- public_member_api_docs
4 changes: 3 additions & 1 deletion package/doodstream/bin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
4 changes: 3 additions & 1 deletion package/doodstream/example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ macos/Flutter/ephemeral
windows/ephemeral
tmp/
temp/
generate_general_private_tools_*
generate_general_private_tools_*
packagex-build-debug
packagex-compile-debug
37 changes: 8 additions & 29 deletions package/doodstream/example/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,9 @@
# This file configures the static analysis results for your project (errors,
# warnings, and lints).
#
# This enables the 'recommended' set of lints from `package:lints`.
# This set helps identify many issues that may lead to problems when running
# or consuming Dart code, and enforces writing Dart using a single, idiomatic
# style and format.
#
# If you want a smaller set of lints you can change this to specify
# 'package:lints/core.yaml'. These are just the most critical lints
# (the recommended set includes the core lints).
# The core lints are also what is used by pub.dev for scoring packages.

include: package:lints/recommended.yaml

# Uncomment the following section to specify additional rules.

# linter:
# rules:
# - camel_case_types

# analyzer:
# exclude:
# - path/to/excluded/files/**

# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints

# For additional information about configuring this file, see
# https://dart.dev/guides/language/analysis-options
analyzer:
exclude:
- test
- dev
- templates
linter:
rules:
- public_member_api_docs
2 changes: 1 addition & 1 deletion package/doodstream/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish_to: 'none'
environment:
sdk: '>=3.6.0 <4.0.0'
dependencies:
general_lib: '^0.0.56'
general_lib: '^0.0.59'
doodstream:
path: '/home/galaxeus/.pub-cache/hosted/pub.dev/doodstream-0.0.0'
dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion package/doodstream/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ environment:
sdk: '>=3.6.0 <4.0.0'
dependencies:
http: '^1.2.2'
general_lib: '^0.0.56'
general_lib: '^0.0.59'
path: '^1.9.0'
dev_dependencies:
lints: '^5.0.0'
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ platforms:
environment:
sdk: '>=3.6.0 <4.0.0'
dependencies:
general_lib: '^0.0.56'
general_lib: '^0.0.59'
mason_logger: '^0.3.1'
packagex: '^0.0.70'
packagex: '^0.0.83'
path: '^1.9.0'
universal_io: '^2.2.2'
yaml: '^3.1.2'
yaml: '^3.1.3'
yaml_edit: '^2.2.0'
yaml_writer: '^2.0.0'
yaml_writer: '^2.0.1'
dev_dependencies:
lints: '^5.0.0'
test: 'any'
Expand Down

0 comments on commit 4679078

Please sign in to comment.