source: trip-planner-front/node_modules/get-intrinsic/.eslintrc@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 715 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 },
12
13 "globals": {
14 "AggregateError": false,
15 },
16
17 "rules": {
18 "array-bracket-newline": 0,
19 "array-element-newline": 0,
20 "complexity": 0,
21 "eqeqeq": [2, "allow-null"],
22 "func-name-matching": 0,
23 "id-length": 0,
24 "max-lines-per-function": [2, 80],
25 "max-params": [2, 4],
26 "max-statements": 0,
27 "max-statements-per-line": [2, { "max": 2 }],
28 "multiline-comment-style": 0,
29 "no-magic-numbers": 0,
30 "operator-linebreak": [2, "before"],
31 "sort-keys": 0,
32 },
33
34 "overrides": [
35 {
36 "files": "test/**",
37 "rules": {
38 "max-lines-per-function": 0,
39 "new-cap": 0,
40 },
41 },
42 ],
43}
Note: See TracBrowser for help on using the repository browser.