Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit 1bf9301

Browse files
committed
fix linting
1 parent 8182212 commit 1bf9301

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ jspm_packages
4343
.idea
4444

4545
/build
46+
/.vscode

src/plugin.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ const ErrorBarsPlugin = {
197197
if (errorBarData) {
198198
const errorBarColor = options.color ? options.color : bar.color;
199199
const value = vScale.getRightValue(bar.value);
200-
const base = horizontal ? bar.x : bar.y;
201200

202201
const plusValue = options.absoluteValues ? Math.abs(errorBarData.plus) : (value + Math.abs(errorBarData.plus));
203202
const minusValue = options.absoluteValues ? Math.abs(errorBarData.minus) : (value - Math.abs(errorBarData.minus));

0 commit comments

Comments
 (0)