A Serverless Plugin for the Serverless Framework which adds support for JSHint linting.
THIS PLUGIN REQUIRES SERVERLESS V0.5 OR HIGHER!
This plugins adds capabilities to lint your Lambda functions before deploying. It also saves you from deploying ES6 syntax by accident.
In your project root, run:
npm install --save serverless-jshint-plugin
Add the plugin to s-project.json
:
"plugins": [
"serverless-jshint-plugin"
]
Run the jshint action to check one or multiple functions for errors:
serverless function jshint someFunction someOtherFunction
When no function names are provided, it will check all functions in the current
working directory. You can also check the full project by passing the --all
/
-a
flag.
To apply custom configuration, add a .jshintrc
file in the project root.
- Improve documentation
- Add hooks to automate linting upon run or deployment
ISC License. See the LICENSE file.