source: imaps-frontend/node_modules/array-includes/.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: 425 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "id-length": [2, { "min": 1, "max": 26 }],
8 "new-cap": [2, {
9 "capIsNewExceptions": [
10 "GetIntrinsic",
11 "ToObject",
12 "ToIntegerOrInfinity",
13 "ToLength",
14 "SameValueZero",
15 "RequireObjectCoercible",
16 ],
17 }],
18 },
19
20 "overrides": [
21 {
22 "files": "test/**",
23 "rules": {
24 "max-lines-per-function": 0,
25 "no-invalid-this": 1,
26 },
27 },
28 ],
29}
Note: See TracBrowser for help on using the repository browser.