source: frontend/node_modules/for-each/.eslintrc

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 618 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "eqeqeq": [2, "allow-null"],
8 "func-name-matching": 0,
9 "func-style": 0,
10 "indent": [2, 4],
11 "max-nested-callbacks": [2, 3],
12 "max-params": [2, 3],
13 "max-statements": [2, 14],
14 "no-extra-parens": 0,
15 "no-invalid-this": 1,
16 "no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
17 },
18
19 "overrides": [
20 {
21 "files": "test/**",
22 "rules": {
23 "array-bracket-newline": 0,
24 "array-element-newline": 0,
25 "max-statements-per-line": 0,
26 "no-magic-numbers": 0,
27 },
28 },
29 ],
30}
Note: See TracBrowser for help on using the repository browser.