Skip to content

Commit

Permalink
Merge pull request #150 from sosna/develop
Browse files Browse the repository at this point in the history
Add UNICEF to the list of providers
  • Loading branch information
sosna committed Aug 26, 2020
2 parents 9f74392 + 00078dd commit 2e732df
Show file tree
Hide file tree
Showing 19 changed files with 431 additions and 150 deletions.
16 changes: 15 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@
"plugin:coffee/eslint-recommended"
],
"rules": {
"coffee/id-length": "off"
"coffee/id-length": 0,
"coffee/no-template-curly-in-string": 1,
"coffee/block-scoped-var": 1,
"coffee/class-methods-use-this": 1,
"coffee/complexity": 2,
"coffee/no-empty-function": 2,
"no-eval": 2,
"coffee/no-useless-return": 1,
"coffee/array-bracket-spacing": 1,
"coffee/comma-style": 1,
"coffee/function-paren-newline": 1,
"coffee/max-len": 2,
"coffee/max-depth": 2,
"coffee/no-unneeded-ternary": 2,
"coffee/no-negated-condition": 2
}
}
207 changes: 111 additions & 96 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"node": ">=10"
},
"description": "SDMX REST API client for JavaScript",
"version": "2.15.4",
"version": "2.16.0",
"main": "./lib/index.js",
"scripts": {
"prebuild": "rm -rf lib && mkdir lib",
Expand Down Expand Up @@ -54,7 +54,7 @@
"coffeescript": "2.5.1",
"eslint": "7.7.0",
"eslint-plugin-coffee": "0.1.12",
"mocha": "8.1.1",
"mocha": "8.1.2",
"nock": "13.0.4",
"nyc": "15.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/avail/availability-query.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ isValidQuery = (q) ->
break unless isValid
{isValid: isValid, errors: errors}

toKeyString = (dims) ->
toKeyString = (dims) ->
((if Array.isArray d then d.join('+') else d ? '') for d in dims).join('.')

toProviderString = (p) -> p.join('+')
Expand Down
Loading

0 comments on commit 2e732df

Please sign in to comment.