- Commit
- c3f1328c3b44e69fafc049e230ba4c09fae40e8c
- Parent
- 3f02b59874a2a2ac0af4b81008b55b14d95bb70d
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Improved eslint.json.
My personal build of CMark ✏️
Improved eslint.json.
1 file changed, 8 insertions, 2 deletions
Status | File Name | N° Changes | Insertions | Deletions |
Modified | eslint.json | 10 | 8 | 2 |
diff --git a/eslint.json b/eslint.json @@ -1,12 +1,18 @@ { "env": { - "browser": true, + "browser": false, "node": true, }, "rules": { "camelcase": false, "quotes": false, "no-process-exit": false, - "no-empty": false + "no-empty": false, + "new-caps": { + "newIsCap": true, + "capIsNew": true, + "newIsCapExceptions": [], + "capIsNewExceptions": [] + } } }