Skip to content

Commit

Permalink
refactor: Add altfire_lints package and its dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
naipaka committed Dec 25, 2023
1 parent a4fb9a6 commit 229bb8d
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 16 deletions.
1 change: 1 addition & 0 deletions .cspell/app-words.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# App Specific Words
altfire
configurator
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import 'package:custom_lint_builder/custom_lint_builder.dart';

import 'src/lints/dispose_config.dart';

PluginBase createPlugin() => _FlutterFirePlugin();
PluginBase createPlugin() => _AltFirePlugin();

class _FlutterFirePlugin extends PluginBase {
class _AltFirePlugin extends PluginBase {
@override
List<LintRule> getLintRules(CustomLintConfigs configs) => [
const DisposeConfig(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutterfire_lint
description: flutterfire_lint is helpful in preventing common issues with wrapper packages for flutterfire.
name: altfire_lints
description: altfire_lints is helpful in preventing common issues with wrapper packages for flutterfire.
version: 0.0.1

environment:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: flutterfire_lint_test
name: altfire_lints_test
publish_to: none

environment:
Expand All @@ -10,12 +10,12 @@ dependencies:
flutterfire_configurator:

dev_dependencies:
altfire_lints:
path: ../altfire_lints
altive_lints: ^1.9.0
custom_lint: ^0.5.7
flutter_test:
sdk: flutter
flutterfire_lint:
path: ../flutterfire_lint

dependency_overrides:
flutterfire_configurator:
Expand Down
14 changes: 7 additions & 7 deletions packages/flutterfire_configurator/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.3.11"
altfire_lints:
dependency: "direct dev"
description:
path: "../../altfire_lints"
relative: true
source: path
version: "0.0.1"
altive_lints:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -271,13 +278,6 @@ packages:
relative: true
source: path
version: "0.1.0"
flutterfire_lint:
dependency: "direct dev"
description:
path: "../../flutterfire_lint"
relative: true
source: path
version: "0.0.1"
freezed_annotation:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions packages/flutterfire_configurator/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ dependencies:
path: ../

dev_dependencies:
altfire_lints:
path: ../../altfire_lints
altive_lints: ^1.8.1
custom_lint: ^0.5.7
flutterfire_lint:
path: ../../flutterfire_lint

flutter:
uses-material-design: true

0 comments on commit 229bb8d

Please sign in to comment.