This repository was archived by the owner on Jul 16, 2023. It is now read-only.
File tree 8 files changed +16
-11
lines changed
website/docs/getting-started
8 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 8
8
" codeclimate" ,
9
9
" codecov" ,
10
10
" codequality" ,
11
+ " commitlint" ,
11
12
" cyclomatic" ,
12
13
" dartanalyzer" ,
13
14
" dartdocs" ,
14
15
" dependabot" ,
15
16
" dkrutskikh" ,
17
+ " Dmitry" ,
16
18
" Gitlab" ,
19
+ " Grott" ,
17
20
" Halstead" ,
18
21
" incendial" ,
19
22
" ints" ,
23
+ " Konoshenko" ,
20
24
" lcov" ,
21
25
" McCabe's" ,
22
26
" mocktail" ,
28
32
" SLOC" ,
29
33
" todos" ,
30
34
" unawaited" ,
31
- " writeln"
35
+ " writeln" ,
36
+ " Zhifarsky"
32
37
]
33
38
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Unreleased
3
+ ## 4.11.0
4
4
5
5
* feat: add static code diagnostics ` format-comment ` .
6
6
* feat: add static code diagnostics ` avoid-border-all ` .
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ To set this up:
89
89
```yaml
90
90
name: dart_code_metrics_plugin_loader
91
91
description: This pubspec determines the version of the analyzer plugin to load.
92
- version: 4.11.0-dev.1
92
+ version: 4.11.0
93
93
94
94
environment:
95
95
sdk: ">=2.14.0 <3.0.0"
Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ $ dart pub add --dev dart_code_metrics
53
53
$ flutter pub add --dev dart_code_metrics
54
54
```
55
55
56
- ** OR **
56
+ ## OR
57
57
58
58
add it manually to ` pubspec.yaml `
59
59
60
60
``` yaml
61
61
dev_dependencies :
62
- dart_code_metrics : ^4.11.0-dev.1
62
+ dart_code_metrics : ^4.11.0
63
63
` ` `
64
64
65
65
and then run
Original file line number Diff line number Diff line change 1
- const packageVersion = '4.11.0-dev.1 ' ;
1
+ const packageVersion = '4.11.0' ;
Original file line number Diff line number Diff line change 1
1
name : dart_code_metrics
2
- version : 4.11.0-dev.1
2
+ version : 4.11.0
3
3
description : Software analytics tool that helps developers analyse and improve software quality.
4
4
homepage : https://dartcodemetrics.dev
5
5
repository : https://github.com/dart-code-checker/dart-code-metrics
Original file line number Diff line number Diff line change 1
1
name : dart_code_metrics_plugin_loader
2
2
description : This pubspec determines the version of the analyzer plugin to load.
3
- version : 4.11.0-dev.1
3
+ version : 4.11.0
4
4
5
5
environment :
6
6
sdk : " >=2.14.0 <3.0.0"
7
7
8
8
dependencies :
9
- dart_code_metrics : ^4.11.0-dev.1
9
+ dart_code_metrics : ^4.11.0
10
10
11
11
dev_dependencies :
12
12
lints : ^1.0.1
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ $ dart pub add --dev dart_code_metrics
14
14
$ flutter pub add --dev dart_code_metrics
15
15
```
16
16
17
- ** OR **
17
+ ## OR
18
18
19
19
add it manually to ` pubspec.yaml `
20
20
@@ -23,7 +23,7 @@ environment:
23
23
sdk : ' >=2.12.0 <3.0.0'
24
24
25
25
dev_dependencies :
26
- dart_code_metrics : ^4.11.0-dev.1
26
+ dart_code_metrics : ^4.11.0
27
27
` ` `
28
28
29
29
and then run
You can’t perform that action at this time.
0 commit comments