Skip to content

Commit

Permalink
docs: transfer owner (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnnnn authored Feb 2, 2025
1 parent 4d82a77 commit 52bcaa4
Show file tree
Hide file tree
Showing 20 changed files with 190 additions and 189 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Fixes #<issue number>

<!-- Please check all of the followings before submitting your PR -->

- [ ] I have read the [CONTRIBUTING](https://github.com/ronnnnn/nilts/blob/main/CONTRIBUTING.md) docs.
- [ ] I have read the [CONTRIBUTING](https://github.com/dassssshers/nilts/blob/main/CONTRIBUTING.md) docs.
- [ ] I have written an related issue or linked with existing issues.
- [ ] I have written tests and passed all of them.
- Use `melos test` to run tests.
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
## Create or find an issue

Before your contribute, you should find an issue that you want to contribute first.
If you can't find an issue that you want to contribute, you should [create a new issue from here](https://github.com/ronnnnn/nilts/issues/new/choose).
If you can't find an issue that you want to contribute, you should [create a new issue from here](https://github.com/dassssshers/nilts/issues/new/choose).

## Fork this repository and setup

Fork this repository and clone it to your local machine.

### Setup asdf (optional)

Using asdf is optional, but you **must** use SDK versions that managed by [`.tool-versions`](https://github.com/ronnnnn/nilts/blob/main/.tool-versions) file.
Using asdf is optional, but you **must** use SDK versions that managed by [`.tool-versions`](https://github.com/dassssshers/nilts/blob/main/.tool-versions) file.

This project use [asdf](https://asdf-vm.com) to manage Dart and Flutter SDK versions.
If you want to use asdf, you should install asdf.
Expand Down Expand Up @@ -92,5 +92,5 @@ Quick fix message should give details of the quick fix.
## Create a new Pull Request

After you make commit your changes, you can create a new Pull Request.
You should write a description of your changes with following [template](https://github.com/ronnnnn/nilts/blob/main/.github/PULL_REQUEST_TEMPLATE.md).
You should write a description of your changes with following [template](https://github.com/dassssshers/nilts/blob/main/.github/PULL_REQUEST_TEMPLATE.md).
Ensure that all of checks are passed with following check list in the template.
2 changes: 1 addition & 1 deletion melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: nilts

repository:
type: github
origin: https://github.com/ronnnnn/nilts
origin: https://github.com/dassssshers/nilts
owner: ronnnnn
name: nilts

Expand Down
320 changes: 160 additions & 160 deletions packages/nilts/CHANGELOG.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions packages/nilts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

nilts is lint rules, quick fixes and assists for Dart and Flutter projects that helps you enforce best practices, and avoid errors.

[![build][badge-build]](https://github.com/ronnnnn/nilts/actions/workflows/build.yml)
[![build][badge-build]](https://github.com/dassssshers/nilts/actions/workflows/build.yml)
[![pub][badge-pub]](https://pub.dev/packages/nilts)
[![license][badge-license]](https://github.com/ronnnnn/nilts/blob/main/packages/nilts/LICENSE)
[![license][badge-license]](https://github.com/dassssshers/nilts/blob/main/packages/nilts/LICENSE)

[badge-build]: https://img.shields.io/github/actions/workflow/status/ronnnnn/nilts/build.yml?style=for-the-badge&logo=github%20actions&logoColor=%232088FF&color=gray&link=https%3A%2F%2Fgithub.com%2Fronnnnn%2Fnilts%2Factions%2Fworkflows%2Fbuild.yml
[badge-pub]: https://img.shields.io/pub/v/nilts?style=for-the-badge&logo=dart&logoColor=%230175C2&color=gray&link=https%3A%2F%2Fpub.dev%2Fpackages%2Fnilts
Expand Down Expand Up @@ -648,13 +648,13 @@ However, this feature is not yet supported in IntelliJ IDEA and Android Studio,

## Feature requests

If you have any feature requests, please create [an issue from this template](https://github.com/ronnnnn/nilts/issues/new?&labels=feat&template=feat.yml).
If you have any feature requests, please create [an issue from this template](https://github.com/dassssshers/nilts/issues/new?&labels=feat&template=feat.yml).

## Bug reports

If you find any bugs, please create [an issue from this template](https://github.com/ronnnnn/nilts/issues/new?&labels=bug&template=bug.yml).
If you find any bugs, please create [an issue from this template](https://github.com/dassssshers/nilts/issues/new?&labels=bug&template=bug.yml).

## Contributing

Welcome your contributions!!
Please read [CONTRIBUTING](https://github.com/ronnnnn/nilts/blob/main/CONTRIBUTING.md) docs before submitting your PR.
Please read [CONTRIBUTING](https://github.com/dassssshers/nilts/blob/main/CONTRIBUTING.md) docs before submitting your PR.
2 changes: 1 addition & 1 deletion packages/nilts/example/example.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Refer to [nilts_example](https://github.com/ronnnnn/nilts/tree/main/examples/nilts_example) for example project.
Refer to [nilts_example](https://github.com/dassssshers/nilts/tree/main/examples/nilts_example) for example project.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DefinedAsyncCallbackType extends DartLintRule {
static const _code = LintCode(
name: 'defined_async_callback_type',
problemMessage: '`AsyncCallback` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_async_callback_type',
url: 'https://github.com/dassssshers/nilts#defined_async_callback_type',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DefinedAsyncValueGetterType extends DartLintRule {
static const _code = LintCode(
name: 'defined_async_value_getter_type',
problemMessage: '`AsyncValueGetter<T>` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_async_value_getter_type',
url: 'https://github.com/dassssshers/nilts#defined_async_value_getter_type',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DefinedAsyncValueSetterType extends DartLintRule {
static const _code = LintCode(
name: 'defined_async_value_setter_type',
problemMessage: '`AsyncValueSetter<T>` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_async_value_setter_type',
url: 'https://github.com/dassssshers/nilts#defined_async_value_setter_type',
);

@override
Expand Down
4 changes: 2 additions & 2 deletions packages/nilts/lib/src/lints/defined_value_callback_type.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class DefinedValueChangedType extends _DefinedValueCallbackType {
static const _code = LintCode(
name: 'defined_value_changed_type',
problemMessage: '`ValueChanged<T>` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_value_changed_type',
url: 'https://github.com/dassssshers/nilts#defined_value_changed_type',
);

@override
Expand Down Expand Up @@ -84,7 +84,7 @@ class DefinedValueSetterType extends _DefinedValueCallbackType {
static const _code = LintCode(
name: 'defined_value_setter_type',
problemMessage: '`ValueSetter<T>` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_value_setter_type',
url: 'https://github.com/dassssshers/nilts#defined_value_setter_type',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DefinedValueGetterType extends DartLintRule {
static const _code = LintCode(
name: 'defined_value_getter_type',
problemMessage: '`ValueGetter<T>` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_value_getter_type',
url: 'https://github.com/dassssshers/nilts#defined_value_getter_type',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DefinedVoidCallbackType extends DartLintRule {
static const _code = LintCode(
name: 'defined_void_callback_type',
problemMessage: '`VoidCallback` type is defined in Flutter SDK.',
url: 'https://github.com/ronnnnn/nilts#defined_void_callback_type',
url: 'https://github.com/dassssshers/nilts#defined_void_callback_type',
);

@override
Expand Down
4 changes: 2 additions & 2 deletions packages/nilts/lib/src/lints/fixed_text_scale_rich_text.dart
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class FixedTextScaleRichText extends DartLintRule {
name: 'fixed_text_scale_rich_text',
problemMessage: 'Default `textScaler` or `textScaleFactor` value of '
'`RichText` is fixed value.',
url: 'https://github.com/ronnnnn/nilts#fixed_text_scale_rich_text',
url: 'https://github.com/dassssshers/nilts#fixed_text_scale_rich_text',
);

@override
Expand Down Expand Up @@ -194,7 +194,7 @@ class FixedTextScaleRichTextLegacy extends DartLintRule {
name: 'fixed_text_scale_rich_text',
problemMessage: 'Default `textScaleFactor` value of `RichText` is '
'fixed value.',
url: 'https://github.com/ronnnnn/nilts#fixed_text_scale_rich_text',
url: 'https://github.com/dassssshers/nilts#fixed_text_scale_rich_text',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FlakyTestsWithSetUpAll extends DartLintRule {
name: 'flaky_tests_with_set_up_all',
problemMessage:
'`setUpAll` may cause flaky tests with concurrency executions.',
url: 'https://github.com/ronnnnn/nilts#flaky_tests_with_set_up_all',
url: 'https://github.com/dassssshers/nilts#flaky_tests_with_set_up_all',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ class LowReadabilityNumericLiterals extends DartLintRule {
problemMessage:
'Numeric literals with 5 or more digits should use digit separators '
'for better readability.',
url: 'https://github.com/ronnnnn/nilts#low_readability_numeric_literals',
url:
'https://github.com/dassssshers/nilts#low_readability_numeric_literals',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class NoSupportMultiTextDirection extends DartLintRule {
name: 'no_support_multi_text_direction',
problemMessage:
'This configuration is not affected by changes of `TextDirection`.',
url: 'https://github.com/ronnnnn/nilts#no_support_multi_text_direction',
url: 'https://github.com/dassssshers/nilts#no_support_multi_text_direction',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class NoSupportWebPlatformCheck extends DartLintRule {
name: 'no_support_web_platform_check',
problemMessage:
'Platform check with dart:io API is not supported on web application.',
url: 'https://github.com/ronnnnn/nilts#no_support_web_platform_check',
url: 'https://github.com/dassssshers/nilts#no_support_web_platform_check',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class ShrinkWrappedScrollView extends DartLintRule {
problemMessage: 'Shrink wrapping the content of the scroll view is '
'significantly more expensive than '
'expanding to the maximum allowed size.',
url: 'https://github.com/ronnnnn/nilts#shrink_wrapped_scroll_view',
url: 'https://github.com/dassssshers/nilts#shrink_wrapped_scroll_view',
);

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class UnnecessaryRebuildsFromMediaQuery extends DartLintRule {
problemMessage: 'Using `MediaQuery.of` or `MediaQuery.maybeOf` '
'may cause unnecessary rebuilds.',
url:
'https://github.com/ronnnnn/nilts#unnecessary_rebuilds_from_media_query',
'https://github.com/dassssshers/nilts#unnecessary_rebuilds_from_media_query',
);

@override
Expand Down
6 changes: 3 additions & 3 deletions packages/nilts/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
name: nilts
version: 0.18.1
description: nilts is lint rules, quick fixes and assists for Dart and Flutter projects that helps you enforce best practices, and avoid errors.
homepage: https://github.com/ronnnnn/nilts
repository: https://github.com/ronnnnn/nilts
issue_tracker: https://github.com/ronnnnn/nilts/issues
homepage: https://github.com/dassssshers/nilts
repository: https://github.com/dassssshers/nilts
issue_tracker: https://github.com/dassssshers/nilts/issues
platforms:
android:
ios:
Expand Down

0 comments on commit 52bcaa4

Please sign in to comment.