Skip to content

Commit a14d58f

Browse files
authored
Merge pull request #12 from bohdan-chechin/check_availability
Check availability
2 parents a536d89 + 708c2d4 commit a14d58f

22 files changed

+715
-392
lines changed

.eslintrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ const ALWAYS = 'always';
66
const NEVER = 'never';
77

88
module.exports = {
9+
"parserOptions": {
10+
"ecmaVersion": 8
11+
},
912
'env': {
1013
es6: true,
1114
node: true
@@ -93,7 +96,7 @@ module.exports = {
9396
WARN,
9497
ALWAYS
9598
],
96-
'object-curly-newline': [
99+
'object-curly-newline': [
97100
ERROR,
98101
{
99102
ObjectExpression: {
@@ -151,4 +154,4 @@ module.exports = {
151154
}
152155
]
153156
}
154-
};
157+
};

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
coverage
33
.idea
4+
.vscode

0 commit comments

Comments
 (0)