source: trip-planner-front/node_modules/deep-equal/.eslintrc@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 406 bytes
Line 
1{
2 "root": true,
3 "extends": "@ljharb",
4 "rules": {
5 "complexity": 0,
6 "eqeqeq": 1,
7 "func-style": [2, "declaration"],
8 "indent": [2, 2],
9 "max-params": [2, 3],
10 "max-statements-per-line": [2, { "max": 2 }],
11 "strict": 1,
12 },
13 "overrides": [
14 {
15 "files": ["example/**", "test/**"],
16 "rules": {
17 "max-params": 0,
18 "no-console": 0,
19 },
20 },
21 ],
22}
Note: See TracBrowser for help on using the repository browser.