-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
90 lines (87 loc) · 2.28 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"extends": ["next/core-web-vitals", "next/typescript"]
// "rules": {
// "react/no-unescaped-entities": "off",
// "@next/next/no-page-custom-font": "off"
// }
}
// {
// "airports": [
// {
// "name": "Deepanshu Bhai Ka Airport",
// "code": "DBA",
// "country": "India",
// "city": "New Delhi",
// "flights": [
// {
// "arrival": [
// {
// "id": "423dsf",
// "time": "10:30 AM",
// "date": "2024-10-12",
// "price": 2500,
// "travelling_time": "2h 30m",
// "stops": ["id1", "id2"]
// },
// {
// "id": "756fgh",
// "time": "3:45 PM",
// "date": "2024-10-13",
// "price": 3200,
// "travelling_time": "3h 15m",
// "stops": ["id3"]
// }
// ],
// "departure": [
// {
// "id": "723hfg",
// "time": "11:45 AM",
// "date": "2024-10-12",
// "price": 2700,
// "travelling_time": "2h 45m",
// "stops": []
// },
// {
// "id": "912jkl",
// "time": "5:20 PM",
// "date": "2024-10-13",
// "price": 3000,
// "travelling_time": "3h",
// "stops": ["id4", "id5"]
// }
// ]
// }
// ]
// },
// {
// "name": "Vikas International Airport",
// "code": "VIA",
// "country": "USA",
// "city": "San Francisco",
// "flights": [
// {
// "arrival": [
// {
// "id": "159kln",
// "time": "9:15 AM",
// "date": "2024-10-12",
// "price": 1800,
// "travelling_time": "1h 50m",
// "stops": []
// }
// ],
// "departure": [
// {
// "id": "783mnb",
// "time": "7:00 PM",
// "date": "2024-10-13",
// "price": 2800,
// "travelling_time": "3h 30m",
// "stops": ["id6", "id7"]
// }
// ]
// }
// ]
// }
// ]
// }