Skip to content

Commit 0273662

Browse files
authored
Merge pull request #30 from fusioncharts/feature/drill-down
Feature/drill down
2 parents 5a14d1d + f3bc27b commit 0273662

File tree

9 files changed

+2582
-45
lines changed

9 files changed

+2582
-45
lines changed

.eslintrc.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
extends: airbnb
1+
extends:
2+
- airbnb
3+
- prettier
24
env:
35
browser: true
46
node: true
@@ -14,4 +16,8 @@ rules:
1416
no-return-assign: 0
1517
no-sequences: 0
1618
global-require: 0
17-
import/prefer-default-export: 0
19+
import/prefer-default-export: 0
20+
react/forbid-prop-types: 0
21+
no-unused-expressions: 0
22+
no-useless-return: 0
23+
no-continue: 0

components/DrillDown.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import DrillDown from '../src/DrillDown';
2+
3+
module.exports = DrillDown;

0 commit comments

Comments
 (0)