Skip to content

Commit 91e44e0

Browse files
committed
disable eslint camelcase
1 parent 28c0bf3 commit 91e44e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-charts/src/victory/components/ChartBoxPlot/examples/ChartBoxPlotLegend.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable camelcase */
21
import {
32
Chart,
43
ChartAxis,
@@ -8,7 +7,7 @@ import {
87
ChartThreshold,
98
createContainer
109
} from '@patternfly/react-charts/victory';
11-
10+
/* eslint-disable-next-line */
1211
import chart_color_orange_300 from '@patternfly/react-tokens/dist/esm/chart_color_orange_300';
1312

1413
interface Data {
@@ -37,7 +36,7 @@ export const ChartBoxPlotLegend: React.FunctionComponent = () => {
3736
{
3837
childName: 'limit',
3938
name: 'Limit',
40-
39+
/* eslint-disable-next-line */
4140
symbol: { fill: chart_color_orange_300.var, type: 'threshold' }
4241
},
4342
{ childName: 'cats', name: 'Cats' },
@@ -98,6 +97,7 @@ export const ChartBoxPlotLegend: React.FunctionComponent = () => {
9897
name="limit"
9998
style={{
10099
data: {
100+
/* eslint-disable-next-line */
101101
stroke: chart_color_orange_300.var
102102
}
103103
}}

0 commit comments

Comments
 (0)