source: imaps-frontend/node_modules/es-shim-unscopables/.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: 585 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "env": {
7 "es6": true,
8 "es2017": true,
9 "es2020": true,
10 "es2021": true,
11 "es2022": true,
12 },
13
14 "rules": {
15 "array-bracket-newline": 0,
16 "complexity": 0,
17 "eqeqeq": [2, "allow-null"],
18 "func-name-matching": 0,
19 "id-length": 0,
20 "max-lines-per-function": [2, 80],
21 "max-params": [2, 4],
22 "max-statements": 0,
23 "max-statements-per-line": [2, { "max": 2 }],
24 "multiline-comment-style": 0,
25 "no-magic-numbers": 0,
26 "sort-keys": 0,
27 },
28
29 "overrides": [
30 {
31 "files": "test/**",
32 "rules": {
33 "new-cap": 0,
34 },
35 },
36 ],
37}
Note: See TracBrowser for help on using the repository browser.