source: imaps-frontend/node_modules/array.prototype.findlast/.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: 582 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "array-bracket-newline": 0,
8 "id-length": 0,
9 "max-statements-per-line": [2, { "max": 2 }],
10 "new-cap": [2, {
11 "capIsNewExceptions": [
12 "GetIntrinsic",
13 "Call",
14 "Get",
15 "IsCallable",
16 "LengthOfArrayLike",
17 "RequireObjectCoercible",
18 "ToBoolean",
19 "ToObject",
20 "ToString",
21 ],
22 }],
23 "no-magic-numbers": 0,
24 },
25
26 "overrides": [
27 {
28 "files": "test/**",
29 "rules": {
30 "func-name-matching": 0,
31 "max-lines-per-function": 0,
32 "no-invalid-this": 1,
33 "strict": 1,
34 },
35 },
36 ],
37}
Note: See TracBrowser for help on using the repository browser.