source: imaps-frontend/node_modules/array.prototype.flatmap/.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: 460 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "new-cap": [2, {
8 "capIsNewExceptions": [
9 "ArraySpeciesCreate",
10 "Call",
11 "CreateDataPropertyOrThrow",
12 "FlattenIntoArray",
13 "Get",
14 "HasProperty",
15 "IsArray",
16 "IsCallable",
17 "Set",
18 "ToLength",
19 "ToObject",
20 "ToString",
21 ]
22 }],
23 "no-magic-numbers": 0,
24 },
25
26 "overrides": [
27 {
28 "files": "test/**",
29 "rules": {
30 "no-invalid-this": [1],
31 },
32 },
33 ],
34}
Note: See TracBrowser for help on using the repository browser.