-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for
.github/config.yml
to set app options (#34)
- Loading branch information
Showing
8 changed files
with
236 additions
and
66 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
todo-pr-checker: | ||
# When should comments be posted? | ||
post_comment: 'items_found' | ||
# What action items should be looked for (will overwrite default values) | ||
action_items: ['TODO', 'FIXME', 'BUG'] | ||
# Languages/file types to add. At least either the line comment or both block comment definitions are required. | ||
# If there are no line comments in the language, set the value to null. | ||
add_languages: [ | ||
['js', '//', '/*', '*,'], | ||
['css', null, '/*', '*/'], | ||
['.py', '#'] | ||
] | ||
# Whether or not searching for action items should be case sensitive | ||
case_sensitive: false |
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
Oops, something went wrong.