Skip to content

Commit 2ad5e3b

Browse files
committed
Update dependencies
1 parent 3e666c6 commit 2ad5e3b

File tree

5 files changed

+30
-16
lines changed

5 files changed

+30
-16
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
end_of_line = lf
6+
charset = utf-8
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[{*.js,*.mjs,*.ts,*.json,*.yml}]
11+
indent_size = 2
12+
indent_style = space

.eslintrc.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
},
77
"extends": "eslint:recommended",
88
"parserOptions": {
9-
"ecmaVersion": 2018
9+
"ecmaVersion": 2020
10+
},
11+
"globals": {
12+
"BigInt": true
1013
},
1114
"rules": {
1215
"indent": [
@@ -25,7 +28,6 @@
2528
"error",
2629
"always"
2730
],
28-
"no-console": "off",
2931
"no-loop-func": [
3032
"error"
3133
],
@@ -113,6 +115,9 @@
113115
"new-parens": [
114116
"error"
115117
],
118+
"no-lonely-if": [
119+
"error"
120+
],
116121
"no-trailing-spaces": [
117122
"error"
118123
],
@@ -260,4 +265,4 @@
260265
"never"
261266
]
262267
}
263-
}
268+
}

JavaScript/package-lock.json

Lines changed: 5 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaScript/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
2-
"name": "async-examples",
3-
"private": true,
4-
"version": "1.0.1",
2+
"name": "example",
53
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
4+
"license": "MIT",
65
"dependencies": {
7-
"async": "^3.2.0"
8-
},
9-
"license": "MIT"
6+
"async": "^3.2.4"
7+
}
108
}

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2020 How.Programming.Works contributors
3+
Copyright (c) 2017-2021 How.Programming.Works contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)