Description:
Tweak warning levels and remove .java-version, which was misleading.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -1,5 +1,5 | |||
|
1 |
(defproject project-checkup "0.1. |
|
|
2 | :description "Makes sure your project is healthy. " | |
|
1 | (defproject project-checkup "0.1.5" | |
|
2 | :description "Makes sure your project is healthy. :)" | |
|
3 | 3 | :url "https://bitbucket.org/alysbrooks/project-checkup" |
|
4 | 4 | :license {:name "Eclipse Public License" |
|
5 | 5 | :url "http://www.eclipse.org/legal/epl-v10.html"} |
@@ -105,13 +105,13 | |||
|
105 | 105 | {:name "Project has a README" |
|
106 | 106 | :function check-readme |
|
107 | 107 | :description "Readme exists" |
|
108 |
:level : |
|
|
108 | :level :warning | |
|
109 | 109 | :follow-up "Add a README." } |
|
110 | 110 | {:name "Project has a CHANGELOG" |
|
111 | 111 | :function check-changelog |
|
112 | 112 | :description "Changelog exists" |
|
113 |
:level : |
|
|
114 | :follow-up "Add a CHANGELOG. Consider refering to keepachangelog.com" } | |
|
113 | :level :warning | |
|
114 | :follow-up "Add a CHANGELOG. Consider refering to keepachangelog.com for guidance." } | |
|
115 | 115 | {:name "README has no placeholders" |
|
116 | 116 | :function check-readme-placeholders |
|
117 | 117 | :description "No placeholders in README" |
@@ -122,7 +122,7 | |||
|
122 | 122 | :function check-license |
|
123 | 123 | :description "Project has a LICENSE file." |
|
124 | 124 | :level :warning ;going with warning because a project might not have a license before release. |
|
125 |
:follow-up "Add a license to LICENSE. Consider using https://choosealicense.com/ |
|
|
125 | :follow-up "Add a license to LICENSE. Consider using https://choosealicense.com/ for guidance." }]) | |
|
126 | 126 | |
|
127 | 127 | (defn perform-check [check project] |
|
128 | 128 | (let [{check-name :name function :function follow-up :follow-up |
|
1 | NO CONTENT: file was removed |
You need to be logged in to leave comments.
Login now