Skip to content

Commit f9d1d7f

Browse files
committed
disabled camel case rule
1 parent 3dd02e4 commit f9d1d7f

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,3 +1,4 @@
1+
/* eslint-disable camelcase */
12
import {
23
Chart,
34
ChartAxis,
@@ -7,7 +8,7 @@ import {
78
ChartThreshold,
89
createContainer
910
} from '@patternfly/react-charts/victory';
10-
// eslint-disable-next-line camelcase
11+
1112
import chart_color_orange_300 from '@patternfly/react-tokens/dist/esm/chart_color_orange_300';
1213

1314
interface Data {
@@ -36,7 +37,7 @@ export const ChartBoxPlotLegend: React.FunctionComponent = () => {
3637
{
3738
childName: 'limit',
3839
name: 'Limit',
39-
// eslint-disable-next-line camelcase
40+
4041
symbol: { fill: chart_color_orange_300.var, type: 'threshold' }
4142
},
4243
{ childName: 'cats', name: 'Cats' },
@@ -97,7 +98,6 @@ export const ChartBoxPlotLegend: React.FunctionComponent = () => {
9798
name="limit"
9899
style={{
99100
data: {
100-
// eslint-disable-next-line camelcase
101101
stroke: chart_color_orange_300.var
102102
}
103103
}}

0 commit comments

Comments
 (0)