-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from bancolombia/feature/example
feat: add example
- Loading branch information
Showing
16 changed files
with
341 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# See https://www.dartlang.org/guides/libraries/private-files | ||
|
||
# Files and directories created by pub | ||
.dart_tool/ | ||
.packages | ||
build/ | ||
# If you're building an application, you may want to check-in your pubspec.lock | ||
pubspec.lock | ||
|
||
# Directory created by dartdoc | ||
# If you don't generate documentation locally you can remove this line. | ||
doc/api/ | ||
|
||
# Avoid committing generated Javascript files: | ||
*.dart.js | ||
*.info.json # Produced by the --dump-info flag. | ||
*.js # When generated by dart2js. Don't specify *.js if your | ||
# project includes source files written in JavaScript. | ||
*.js_ | ||
*.js.deps | ||
*.js.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Dart Code Checker | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Examples | ||
|
||
DCL is a static analysis tool and code from it is not expected to be used directly. Instead, it should be added as a dev dependency and installed [as described here](https://github.com/bancolombia/dart-code-linter/blob/trunk/GETTINGSTARTED.md). | ||
|
||
## Preferred way: plugin and CLI | ||
|
||
To use DCL as a plugin or a CLI, check out [this repository](https://github.com/bancolombia/dart-code-linter/blob/trunk/example/lib/main.dart) with the example Flutter app. It covers DCL setup and shows all commands output. | ||
|
||
## Additional way: as a library | ||
|
||
**Note:** usually you don't need to use DCL directly. | ||
|
||
DCL can be used directly as a library, imported and called from your code. Continue with [this example](https://github.com/bancolombia/dart-code-linter/blob/trunk/example/lib_example/lib/main.dart) in order to get more details. | ||
|
||
## Presets | ||
|
||
Presets can be enabled with `extends` config, more details [can be found here](https://github.com/bancolombia/dart-code-linter/wiki/Presets). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
analyzer: | ||
language: | ||
strict-inference: true | ||
strict-raw-types: true | ||
# Dart Code Linter uses plugins api from the analyzer | ||
# to provide issues highlight in the IDE. If you don't want the issues | ||
# to be shown and need only the CLI, you need to remove the section below. | ||
plugins: | ||
- dart_code_linter | ||
strong-mode: | ||
implicit-casts: false | ||
implicit-dynamic: false | ||
|
||
dart_code_linter: | ||
# Dart Code Linter supports presets. The config from a preset will be merged | ||
# with the config listed in this file. The config listed here has a higher priority. | ||
# Any rule can be simply disabled by setting `- rule-name: false`. | ||
# Uncomment the section below to see how presets work. | ||
# extends: | ||
# - package:dart_code_linter/presets/all.yaml | ||
|
||
# To enabled anti-patterns and metrics in the analysis report, uncomment the sections below. | ||
# Metric violations are not shown in the IDE. | ||
# anti-patterns: | ||
# - long-method | ||
# - long-parameter-list | ||
# metrics: | ||
# cyclomatic-complexity: 20 | ||
# maintainability-index: 50 | ||
# maximum-nesting: 5 | ||
# number-of-parameters: 5 | ||
# source-lines-of-code: 50 | ||
# technical-debt: | ||
# threshold: 16 | ||
# todo-cost: 4 | ||
# ignore-cost: 8 | ||
# ignore-for-file-cost: 16 | ||
# as-dynamic-cost: 16 | ||
# deprecated-annotations-cost: 2 | ||
# file-nullsafety-migration-cost: 2 | ||
# unit-type: "hours" | ||
|
||
# Dart Code Linter provides custom configurable rules. | ||
# The rules have a `kebab-case` naming instead of | ||
# `snake_case` intentionally in order for you to identify, | ||
# whether the rule is from Dart Code Metrics or the standard analyzer. | ||
# All rules share basic configuration like `exclude` section, | ||
# but some also have a rule-specific one. | ||
# Not all rules are listed here, the full list can be found on our website: https://github.com/bancolombia/dart-code-linter/wiki/Rules | ||
rules: | ||
- avoid-top-level-members-in-tests | ||
- avoid-collection-methods-with-unrelated-types | ||
- avoid-missing-enum-constant-in-map | ||
- avoid-unnecessary-type-assertions | ||
- avoid-unnecessary-type-casts | ||
- avoid-unused-parameters | ||
- newline-before-return | ||
- no-boolean-literal-compare | ||
- no-empty-block | ||
- no-equal-then-else | ||
- prefer-async-await | ||
- prefer-correct-type-name: | ||
max-length: 44 | ||
- prefer-match-file-name: | ||
exclude: | ||
- test/** | ||
- prefer-trailing-comma |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_example/src/unnecessary_nullable_widget.dart'; | ||
import 'package:flutter_example/src/unused_code_widget.dart'; | ||
|
||
void main() { | ||
runApp(const MyApp()); | ||
} | ||
|
||
/// The issue below is reported by Dart Code Linter. | ||
/// In order to resolve the warning, the class or the file should be renamed. | ||
class MyApp extends StatelessWidget { | ||
const MyApp({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) => MaterialApp( | ||
title: 'Flutter Demo', | ||
theme: ThemeData( | ||
primarySwatch: Colors.blue, | ||
), | ||
home: const MyHomePage(title: 'Flutter Demo Home Page'), | ||
); | ||
} | ||
|
||
class MyHomePage extends StatefulWidget { | ||
const MyHomePage({super.key, required this.title}); | ||
|
||
final String title; | ||
|
||
@override | ||
State<MyHomePage> createState() => _MyHomePageState(); | ||
} | ||
|
||
class _MyHomePageState extends State<MyHomePage> { | ||
int _counter = 0; | ||
|
||
/// The issue below is reported by Dart Code Linter. | ||
/// In order to resolve the warning, the parameter should be used or removed. | ||
void _incrementCounter(BuildContext context) { | ||
setState(() { | ||
_counter++; | ||
}); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) => Scaffold( | ||
appBar: AppBar( | ||
title: Text(widget.title), | ||
), | ||
body: Center( | ||
child: Column( | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
children: <Widget>[ | ||
const Text( | ||
'You have pushed the button this many times:', | ||
), | ||
Text( | ||
'$_counter', | ||
style: Theme.of(context).textTheme.headline4, | ||
), | ||
UnusedCodeWidget(), | ||
UnnecessaryNullableWidget(), | ||
], | ||
), | ||
), | ||
|
||
/// The issue below is reported by Dart Code Linter. The severity of a rule can be configured via `severity` config entry. | ||
/// Adding a trailing comma will remove the highlight. | ||
/// Trailing comma can also be added with auto-fix menu command in the IDE. | ||
/// Rules that support auto-fixes are marked with corresponding emoji in the docs https://dartcodemetrics.dev/docs/rules. | ||
floatingActionButton: FloatingActionButton( | ||
onPressed: () => _incrementCounter(context), | ||
tooltip: 'Increment', | ||
child: const Icon(Icons.add), | ||
)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class UnnecessaryNullableWidget extends StatelessWidget { | ||
const UnnecessaryNullableWidget({super.key}); | ||
|
||
/// This callback declares a nullable parameter `value`, | ||
/// but it's actually always used with non-nullable argument. | ||
/// Run `flutter pub run dart_code_linter:metrics check-unnecessary-nullable lib` to see the report. | ||
void someCallback(String? value) { | ||
print(value); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return TextButton( | ||
onPressed: () => someCallback('Hello'), | ||
child: Text('From world'), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import 'package:flutter/src/widgets/container.dart'; | ||
import 'package:flutter/src/widgets/framework.dart'; | ||
|
||
/// This variable is not referenced in any file and is actually unused. | ||
/// In order to spot such declarations, | ||
/// run `flutter pub run dart_code_linter:metrics check-unused-code lib`. | ||
const someVariable = '1'; | ||
|
||
/// This function is not referenced in any file and is actually unused. | ||
/// In order to spot such declarations, | ||
/// run `flutter pub run dart_code_linter:metrics check-unused-code lib`. | ||
String topLevelFunction() { | ||
print('Actually unused'); | ||
|
||
return 'Unused'; | ||
} | ||
|
||
/// This widget is used by `main.dart`. | ||
class UnusedCodeWidget extends StatelessWidget { | ||
const UnusedCodeWidget({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Container(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import 'package:flutter/widgets.dart'; | ||
|
||
/// This widget is not imported by any other file and is not a project entry point. | ||
/// It will be reported by `check-unused-files` command. | ||
/// Run `flutter pub run dart_code_linter:metrics check-unused-files lib` to see the report. | ||
class UnusedWidget extends StatelessWidget { | ||
const UnusedWidget({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Container(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:dart_code_linter/lint_analyzer.dart'; | ||
|
||
Future<void> main() async { | ||
// Get some folder you would like to analyze. | ||
const foldersToAnalyze = ['lib', 'test']; | ||
|
||
// Root folder path is used to resolve relative file paths. | ||
const rootFolder = 'projectRoot'; | ||
|
||
// First of all config has to be created for a checker. | ||
const config = LintConfig( | ||
excludePatterns: ['test/resources/**'], | ||
excludeForMetricsPatterns: ['test/**'], | ||
metrics: { | ||
'maximum-nesting-level': '5', | ||
'number-of-methods': '10', | ||
}, | ||
excludeForRulesPatterns: ['test/**'], | ||
rules: { | ||
'double-literal-format': {}, | ||
'newline-before-return': {'severity': 'info'}, | ||
}, | ||
antiPatterns: {'long-method': {}}, | ||
shouldPrintConfig: false, | ||
analysisOptionsPath: null, | ||
); | ||
|
||
const analyzer = LintAnalyzer(); | ||
|
||
final result = | ||
await analyzer.runCliAnalysis(foldersToAnalyze, rootFolder, config); | ||
|
||
// Now runner.results() contains some insights about analyzed code. Let's report it! | ||
// For a simple example we would report results to terminal | ||
|
||
// Now pass collected analysis reports from runner to reporter and that's it | ||
await analyzer | ||
.getReporter(name: 'console', output: stdout, reportFolder: '.') | ||
?.report(result); | ||
|
||
// There is also JsonReporter for making machine-readable reports | ||
// HtmlReporter produces fancy html-documents with bells and whistles | ||
// And CodeClimateReporter produces reports that are widely understood by various CI tools | ||
// If none of these fits your case you can always access raw analysis info via results() method of runner and process it any way you see fit | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: flutter_example | ||
description: Example app with DCL setup. | ||
|
||
publish_to: "none" # Remove this line if you wish to publish to pub.dev | ||
|
||
version: 1.0.0+1 | ||
|
||
environment: | ||
sdk: ">=2.18.2 <3.0.0" | ||
|
||
dependencies: | ||
flutter: | ||
sdk: flutter | ||
cupertino_icons: ^1.0.2 | ||
|
||
dev_dependencies: | ||
dart_code_linter: ^1.1.0 | ||
flutter_test: | ||
sdk: flutter | ||
|
||
flutter: | ||
uses-material-design: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
const packageVersion = '1.0.2'; | ||
const packageVersion = '1.1.0'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: dart_code_linter_plugin_loader | ||
description: This pubspec determines the version of the analyzer plugin to load. | ||
version: 1.0.2 | ||
version: 1.1.0 | ||
|
||
environment: | ||
sdk: ">=2.14.0 <3.0.0" | ||
|
||
dependencies: | ||
dart_code_linter: 1.0.2 | ||
dart_code_linter: 1.1.0 | ||
|
||
dev_dependencies: | ||
lints: ^1.0.1 |