source: imaps-frontend/node_modules/es-to-primitive/.eslintrc

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 389 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "complexity": [2, 14],
8 "func-name-matching": 0,
9 "id-length": [2, { "min": 1, "max": 24, "properties": "never" }],
10 "max-statements": [2, 20],
11 "new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }]
12 },
13
14 "overrides": [
15 {
16 "files": "test/**",
17 "rules": {
18 "max-lines-per-function": [2, { "max": 68 }],
19 },
20 }
21 ],
22}
Note: See TracBrowser for help on using the repository browser.