Skip to content

Commit a8c7098

Browse files
committed
Merge branch 'release/2.0.3'
2 parents 934921c + f339a00 commit a8c7098

File tree

10 files changed

+2638
-46
lines changed

10 files changed

+2638
-46
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

.npmignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# PLATFORM
2+
# ========
3+
# All exclusions that are specific to the NPM, GIT, IDE and Operating Systems.
4+
5+
# - Do not allow installed node modules to be committed. Doing `npm install -d` will bring them in root or other places.
6+
node_modules
7+
8+
# - Do not commit any log file from anywhere
9+
*.log
10+
11+
# - Prevent addition of OS specific file explorer files
12+
Thumbs.db
13+
.DS_Store
14+
15+
16+
# PROJECT
17+
# =======
18+
# Configuration pertaining to project specific repository structure.
19+
20+
# - Prevent Sublime text IDE files from being commited to repository
21+
*.sublime-*
22+
23+
# - Prevent NetBeans IDE files from being commited to repository
24+
nbproject/
25+
26+
27+
# - Prevent extra `jshint` configuration from being committed from anywhere. Only `package.json` will be used as
28+
# accepted source of config.
29+
.jshintrc
30+
31+
# - Prevent CI output files from being Added
32+
/out/
33+
34+
# - Prevent diff backups from SourceTree from showing as commit.
35+
*.BACKUP.*
36+
*.BASE.*
37+
*.LOCAL.*
38+
*.REMOTE.*
39+
*.orig
40+
41+
# ----------------------------------------------------------------------------------------------------------------------
42+
# NPMIGNORE ADDITIONS
43+
# ===================
44+
45+
46+
# - Do not distribute submodule sources
47+
/.gitmodules
48+
49+
__tests__/
50+
51+
example/
52+
53+
webpack.config.js
54+
55+
webpack.config.example.js

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)