mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 00:57:26 +03:00
62 lines
1.8 KiB
Dart
62 lines
1.8 KiB
Dart
/*
|
|
* Copyright (C) 2023 Yubico.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import 'package:analyzer/error/listener.dart';
|
|
import 'package:custom_lint_builder/custom_lint_builder.dart';
|
|
|
|
PluginBase createPlugin() => _AppLinter();
|
|
|
|
class _AppLinter extends PluginBase {
|
|
@override
|
|
List<LintRule> getLintRules(CustomLintConfigs configs) => [
|
|
UseRecommendedWidget(
|
|
discouraged: 'TextField',
|
|
recommended: 'AppTextField',
|
|
),
|
|
UseRecommendedWidget(
|
|
discouraged: 'TextFormField',
|
|
recommended: 'AppTextFormField',
|
|
),
|
|
];
|
|
}
|
|
|
|
/// recommend to use App Widgets
|
|
class UseRecommendedWidget extends DartLintRule {
|
|
final String discouraged;
|
|
final String recommended;
|
|
|
|
UseRecommendedWidget({required this.discouraged, required this.recommended})
|
|
: super(
|
|
code: LintCode(
|
|
name: 'use_recommended_widget',
|
|
problemMessage:
|
|
'Use recommended $recommended instead of $discouraged.',
|
|
));
|
|
|
|
@override
|
|
void run(
|
|
CustomLintResolver resolver,
|
|
ErrorReporter reporter,
|
|
CustomLintContext context,
|
|
) {
|
|
context.registry.addInstanceCreationExpression((node) {
|
|
if (node.constructorName.toString() == discouraged) {
|
|
reporter.reportErrorForNode(code, node.constructorName);
|
|
}
|
|
});
|
|
}
|
|
}
|