Files
vercel/test/integration/now-node/aws-sdk/index.js
Luc 59e7367e03 [tests] Unify linting and autoformatting (#2914)
* add prettier and eslint on root

* remove eslint from now-cli

* adjust root package.json

* adjust eslintignore

* adjust now-cli rules

* remove @zeit/git-hooks in packages

* adjust now-client eslint config

* add lint-staged and hook on pre-commit

* add pre-commit script

* replace @zeit/git-hooks with husky

* remove unnecessary script

* fix eslint errors

* trigger tests

* fix fixable errors

* fix fixable errors (bis)

* revert two changes
2019-09-04 23:22:02 +02:00

7 lines
157 B
JavaScript

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const aws = require('aws-sdk');
module.exports = (req, res) => {
res.end('Hello world');
};