diff --git a/.npmignore b/.npmignore index 5609f13..3577070 100755 --- a/.npmignore +++ b/.npmignore @@ -1,9 +1,13 @@ # npm will use .gitignore if .npmignore does not exist. we don't want this. # npm modules node_modules/ -# ES6 source -src/ # coverage report coverage/ -# checklists and standard files -docs-secure/ \ No newline at end of file +# Misc +.vscode/ +.github/ +.nyc_output/ +test/ +.eslintignore +.eslintrc +.gitignore diff --git a/README.md b/README.md index d4e089b..b705cef 100755 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ const joiOptions = { convert: true, abortEarly: false }; (1) Validate sanitize data. The client receives any errors in a [format suitable for forms](https://github.com/eddyystop/joi-errors-for-forms#code-examples) which also seems to be -[recommend by Feathers](http://docs.feathersjs.com/middleware/error-handling.html#featherserror-api). +[recommend by Feathers](https://docs.feathersjs.com/api/errors.html#feathers-errors). ```js export.before = { @@ -149,7 +149,7 @@ Data must be validated and sanitized before the database is changed. The client must be informed of any errors using a schema friendly to web/mobile apps. This repo helps implement this in [Feathers](http://feathersjs.com/) CRUD -[hooks](http://docs.feathersjs.com/hooks/readme.html). +[hooks](https://docs.feathersjs.com/api/hooks.html). ## API Reference diff --git a/tslint.json b/tslint.json deleted file mode 100644 index 2750cc0..0000000 --- a/tslint.json +++ /dev/null @@ -1 +0,0 @@ -{ "extends": "dtslint/dt.json" } \ No newline at end of file