File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"env": {
3
3
"browser": true,
4
+ "es6": true,
4
5
"node": true
5
6
},
7
+ "parserOptions": {
8
+ "ecmaVersion": 6,
9
+ "sourceType": "module"
10
+ },
6
11
"globals": {
7
12
"console": false,
8
13
"crossfilter": false,
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export const dataCount = function (parent, chartGroup) {
120
120
return this ;
121
121
} ;
122
122
_chart . dimension = logger . annotate ( _chart . crossfilter ,
123
- 'consider using dataCount.crossfilter instead of dataCount.dimension for clarity' ) ;
123
+ 'consider using dataCount.crossfilter instead of dataCount.dimension for clarity' ) ;
124
124
125
125
_chart . groupAll = function ( groupAll ) {
126
126
if ( ! arguments . length ) {
@@ -130,7 +130,7 @@ export const dataCount = function (parent, chartGroup) {
130
130
return this ;
131
131
} ;
132
132
_chart . group = logger . annotate ( _chart . groupAll ,
133
- 'consider using dataCount.groupAll instead of dataCount.group for clarity' ) ;
133
+ 'consider using dataCount.groupAll instead of dataCount.group for clarity' ) ;
134
134
135
135
return _chart . anchor ( parent , chartGroup ) ;
136
136
} ;
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ export const dataGrid = function (parent, chartGroup) {
148
148
* @returns {Function|dc.dataGrid }
149
149
*/
150
150
_chart . group = logger . annotate ( _chart . section ,
151
- 'consider using dataGrid.section instead of dataGrid.group for clarity' ) ;
151
+ 'consider using dataGrid.section instead of dataGrid.group for clarity' ) ;
152
152
153
153
/**
154
154
* Get or set the index of the beginning slice which determines which entries get displayed by the widget.
@@ -247,7 +247,7 @@ export const dataGrid = function (parent, chartGroup) {
247
247
* @returns {Function|dc.dataGrid }
248
248
*/
249
249
_chart . htmlGroup = logger . annotate ( _chart . htmlSection ,
250
- 'consider using dataGrid.htmlSection instead of dataGrid.htmlGroup for clarity' ) ;
250
+ 'consider using dataGrid.htmlSection instead of dataGrid.htmlGroup for clarity' ) ;
251
251
252
252
/**
253
253
* Get or set sort-by function. This function works as a value accessor at the item
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ export const dataTable = function (parent, chartGroup) {
247
247
* @returns {Function|dc.dataTable }
248
248
*/
249
249
_chart . group = logger . annotate ( _chart . section ,
250
- 'consider using dataTable.section instead of dataTable.group for clarity' ) ;
250
+ 'consider using dataTable.section instead of dataTable.group for clarity' ) ;
251
251
252
252
/**
253
253
* Get or set the table size which determines the number of rows displayed by the widget.
@@ -462,7 +462,7 @@ export const dataTable = function (parent, chartGroup) {
462
462
* @returns {Boolean|dc.dataTable }
463
463
*/
464
464
_chart . showGroups = logger . annotate ( _chart . showSections ,
465
- 'consider using dataTable.showSections instead of dataTable.showGroups for clarity' ) ;
465
+ 'consider using dataTable.showSections instead of dataTable.showGroups for clarity' ) ;
466
466
467
467
return _chart . anchor ( parent , chartGroup ) ;
468
468
} ;
You can’t perform that action at this time.
0 commit comments