Skip to content

Commit

Permalink
documenting file ignores, print current file as they are being processed
Browse files Browse the repository at this point in the history
  • Loading branch information
aviaviavi committed Nov 27, 2018
1 parent d436d1a commit 34d5da4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .toodles.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Putting a .toodles.yaml file in the root of your repo will give toodles
# any project specific configuration you'd like to set.

# `ignore`: Specify a list of regular expressions.
# Toodles will ignore a file that matches any of the entires
ignore:
- test.js
- stack-work
- node_modules
- Spec.hs
# `flags` specify other keywords you might want to scan other than TODO
# Hardcoded ones include TODO, FIXME, and XXX
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: toodles
version: 1.0.0
version: 1.0.1
github: "aviaviavi/toodles"
license: MIT
author: "Avi Press"
Expand Down
4 changes: 2 additions & 2 deletions toodles.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ cabal-version: 1.12
--
-- see: https://github.com/sol/hpack
--
-- hash: f27f81e3ac0847f1de1a670672ef4ebac62f9a14080ada290cee6cfe7d752dea
-- hash: 95013a4e9f97f67cc56541af010980f8b66d76da59819ff6aef8c68ffdb9bc27

name: toodles
version: 1.0.0
version: 1.0.1
synopsis: Manage the TODO entries in your code
description: Toodles scrapes your entire repository for TODO entries and organizes them so you can manage your project directly from the code. View, filter, sort, and edit your TODO\'s with an easy to use web application. When you make changes via toodles, the edits will be applied directly the TODO entries in your code. When you\'re done, commit and push your changes to share them with your team!
category: Project Management
Expand Down
7 changes: 6 additions & 1 deletion web/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,12 @@
</span>
</div>
<div class="main-container container content column is-three-quarters">
<div class="loading-spinner" v-show="loading"><a class="button is-loading">Loading</a> Loading TODO's. If your project is large, this can take a few moments...</div>
<div class="loading-spinner" v-show="loading"><a class="button is-loading">Loading</a> Loading
TODO's. If your project is large, this can take a few moments.
Try configuring toodles to ignore large and/or autogenerated
files.
<a target="_blank" href="https://github.com/aviaviavi/toodles/blob/master/.toodles.yaml">More info on configuring toodles</a>
</div>
<table class="table todo-list is-striped is-hoverable">
<thead>
<tr>
Expand Down

0 comments on commit 34d5da4

Please sign in to comment.