Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kristw authored and zhaoyongjie committed Nov 30, 2021
1 parent b09a549 commit 3b7cec5
Show file tree
Hide file tree
Showing 117 changed files with 9,907 additions and 0 deletions.
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# See https://help.github.com/articles/about-codeowners/
# for more info about CODEOWNERS file

# It uses the same pattern rule for gitignore file
# https://git-scm.com/docs/gitignore#_pattern_format

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# these users/team will be requested for review
# when someone opens a pull request.

* @apache-superset/embeddable-charts-team
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Bug report
about: Create a report to help us improve

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Environment (please complete the following information):**
- superset-ui version: [e.g. v0.5.0]
- Node version: `node -v`
- npm version: `npm -v`

**Additional context**
Add any other context about the problem here.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Question
about: Ask for help with something.

---

Your question.
- How do I xxx?
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
💔 Breaking Changes

🏆 Enhancements

📜 Documentation

🐛 Bug Fix

🏠 Internal
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
label-alias:
bug: '#bug'
feature_request: '#enhancement'
question: '#question'
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Always validate the PR title, and ignore the commits
titleOnly: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.babelrc
.cache
.cache-loader
.DS_Store
.eslintcache
.eslintignore
.eslintrc.js
.idea
.npm
.prettierignore
.vscode
.yarnclean

*.log
*.map
*.min.js

babel.config.js
build/
coverage/
esm/
jest.config.js
lib/
logs/
node_modules/
package-lock.json
prettier.config.js
tsconfig.json
yarn.lock
_gh-pages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: node_js

node_js:
- '10.10'

cache:
- npm: true
- yarn: true

matrix:
fast_finish: true

install:
- npm install -g codecov
- yarn install

before_script:
- yarn build

script:
- yarn test

after_script:
- codecov
Loading

0 comments on commit 3b7cec5

Please sign in to comment.