Skip to content

Commit 5120a88

Browse files
committed
Phew, more overhaul and changes
- Global enable/disable. The combination of the defaults list and being off by default was hard to reason about - Authorization is now mandatory by default - Change permissions settings to read, write, create, and remove. - Added Linting - Much more edge case handling for find and updates
1 parent d162c9e commit 5120a88

File tree

10 files changed

+7711
-380
lines changed

10 files changed

+7711
-380
lines changed

.eslintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "airbnb-base",
3+
"rules": {
4+
"no-underscore-dangle": ["error", { "allow": ["_conditions", "_fields", "_update", "_doc"] }],
5+
"no-param-reassign": ["error", { "props": false }]
6+
}
7+
}

0 commit comments

Comments
 (0)