Skip to content

Commit 8697e9a

Browse files
committed
chore(codeclimate): ignore test files
1 parent 95f9f9c commit 8697e9a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: .codeclimate.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ plugins:
77
enabled: true
88

99
exclude_patterns:
10-
- node_modules/**
11-
- package-lock.json
10+
- "node_modules/**"
11+
- "package-lock.json"
12+
- "**/tests/**"

Diff for: README.md

-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,3 @@ make isort-check
8181
```
8282

8383
will run the import order checker.
84-

Diff for: lambda_handlers/handlers/http_handler.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
class HTTPHandler(LambdaHandler):
2828
"""
2929
Decorator class to facilitate the definition of AWS HTTP Lambda handlers with:
30-
- input validation,
31-
- output formatting,
32-
- CORS headers, and
33-
- error handling.
30+
- input validation,
31+
- output formatting,
32+
- CORS headers, and
33+
- error handling.
3434
3535
Parameters
3636
----------

0 commit comments

Comments
 (0)