Skip to content

Commit 2c0dfa0

Browse files
2 parents 31e0c58 + d70f3d2 commit 2c0dfa0

37 files changed

+277
-130
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ __pycache__
1010
appstore
1111
bin/things-appstore
1212
things3/things3_appstore.py
13+
node_modules/
14+
package-lock.json
1315

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ auto-style:
117117
@type standard >/dev/null 2>&1 || (echo "Run 'npm install -g standard' first." >&2 ; exit 1)
118118
@standard --fix resources/*.js
119119

120-
lint: auto-style code-style code-lint js-lint html-lint css-lint
120+
lint: auto-style code-style code-lint js-lint css-lint
121121

122122
code-style:
123123
@type pycodestyle >/dev/null 2>&1 || (echo "Run '$(PIP) install pycodestyle' first." >&2 ; exit 1)
@@ -133,15 +133,15 @@ code-lint:
133133

134134
css-lint:
135135
@type csslint >/dev/null 2>&1 || (echo "Run 'npm install -g csslint' first." >&2 ; exit 1)
136-
@csslint --format=compact resources/*.css
136+
@csslint --format=compact resources/kanban.css
137137

138138
js-lint:
139139
@type standard >/dev/null 2>&1 || (echo "Run 'npm install -g standard' first." >&2 ; exit 1)
140140
@standard resources/*.js
141141

142142
html-lint:
143143
@type tidy >/dev/null 2>&1 || (echo "Run 'brew install tidy' first." >&2 ; exit 1)
144-
@tidy -qe resources/*.html
144+
@tidy -qe --mute --mute MISSING_ENDTAG_BEFORE,DISCARDING_UNEXPECTED,TRIM_EMPTY_ELEMENT resources/*.html
145145

146146
code-count:
147147
@type cloc >/dev/null 2>&1 || (echo "Run 'brew install cloc' first." >&2 ; exit 1)
@@ -159,7 +159,7 @@ pre-commit:
159159
@make auto-style lint
160160
@make deps-install install
161161
@THINGSDB=resources/demo.sqlite3 things-cli inbox
162-
@make uninstall clean test png jpg
162+
@make uninstall clean test jpg
163163
@THINGSDB=resources/demo.sqlite3 make run-api &
164164
@THINGSDB=resources/demo.sqlite3 make run open args="today" cli open-api app kill-api
165165
@THINGSDB=resources/demo.sqlite3 make run-app &

resources/android-icon-144x144.png

5.91 KB
Loading

resources/android-icon-192x192.png

6.2 KB
Loading

resources/android-icon-36x36.png

1.89 KB
Loading

resources/android-icon-48x48.png

2.22 KB
Loading

resources/android-icon-72x72.png

3.01 KB
Loading

resources/android-icon-96x96.png

3.83 KB
Loading

resources/apple-icon-114x114.png

4.46 KB
Loading

resources/apple-icon-120x120.png

4.85 KB
Loading

0 commit comments

Comments
 (0)