-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed #9 by adding sequential filename generation for conflicting filepaths; reduced test/demo images * #9: added support for globs in rename_dir and --glob flag * improve detection of file creation time (#10) * fix file creation calc, add better test * updated deps, removed Grunt for tooling * remove grunt dep, updated exif-parser * updated README * updated README
- Loading branch information
1 parent
418530e
commit 47da224
Showing
14 changed files
with
206 additions
and
151 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,19 @@ | ||
parserOptions: | ||
ecmaVersion: 6 | ||
env: | ||
node: true | ||
extends: 'eslint:recommended' | ||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
linebreak-style: | ||
- error | ||
- unix | ||
no-console: off | ||
quotes: | ||
- error | ||
- single | ||
semi: | ||
- error | ||
- always |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.nyc_output | ||
coverage | ||
node_modules | ||
npm-debug.log | ||
npm-debug.log |
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,25 @@ | ||
{ | ||
"check-coverage": true, | ||
"per-file": true, | ||
"lines": 86, | ||
"statements": 86, | ||
"functions": 83, | ||
"branches": 75, | ||
"include": [ | ||
"lib/**/*.js" | ||
], | ||
"exclude": [ | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"html", | ||
"text" | ||
], | ||
"require": [ | ||
], | ||
"extension": [ | ||
], | ||
"cache": true, | ||
"all": true, | ||
"report-dir": "./coverage" | ||
} |
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.