Skip to content

Commit

Permalink
Merge pull request #209 from rahulv-dev/fixLintErrors
Browse files Browse the repository at this point in the history
Fix for JS SDK lint errors
  • Loading branch information
svc-developer authored Jan 5, 2022
2 parents 4c2ce8c + 8862161 commit 486ffaf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,8 @@
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
"ecmaVersion": 9,
"sourceType": "module"
},
"rules": {
"quotes": [2, "single", {
Expand Down
8 changes: 4 additions & 4 deletions test/fixtures/address_response.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export default {
region: 'IL',
country: 'US',
postalCode: '60102-6659',
latitude: 42.1444819999999969878987,
longitude: -867678687688.320204
latitude: 43.144481,
longitude: -86.390206
},
{
addressType: 'StreetOrResidentialAddress',
Expand All @@ -43,8 +43,8 @@ export default {
region: 'IL',
country: 'US',
postalCode: '60102-6659',
latitude: 938745837485739745398475,
longitude: 320204
latitude: 49.144481887,
longitude: -89.390206
}
],
coordinates: { latitude: 42.144481999999996, longitude: -88.320204 },
Expand Down

0 comments on commit 486ffaf

Please sign in to comment.