Skip to content

Commit 8cc7c63

Browse files
[init] Integrate packages into monorepo
1 parent b972aae commit 8cc7c63

File tree

1,028 files changed

+251376
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,028 files changed

+251376
-2
lines changed

packages/apexcharts

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/apexcharts/.codeclimate.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
checks:
2+
argument-count:
3+
config:
4+
threshold: 4
5+
complex-logic:
6+
config:
7+
threshold: 4
8+
file-lines:
9+
config:
10+
threshold: 700
11+
method-complexity:
12+
config:
13+
threshold: 20
14+
method-count:
15+
config:
16+
threshold: 20
17+
method-lines:
18+
config:
19+
threshold: 100
20+
nested-control-flow:
21+
config:
22+
threshold: 4
23+
return-statements:
24+
config:
25+
threshold: 4
26+
exclude_patterns:
27+
- 'config/'
28+
- 'db/'
29+
- 'dist/'
30+
- 'features/'
31+
- '**/node_modules/'
32+
- 'script/'
33+
- 'samples/'
34+
- '**/samples/'
35+
- '**/spec/'
36+
- '**/test/'
37+
- '**/tests/'
38+
- 'Tests/'
39+
- '**/vendor/'
40+
- '**/*_test.go'
41+
- '**/*.d.ts'
42+
- 'src/svgjs/'
43+
- 'src/modules/settings/Options.js'

packages/apexcharts/.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

packages/apexcharts/.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dist/
2+
assets/
3+
src/svgjs/
4+
node_modules/
5+
tests/coverage/

packages/apexcharts/.eslintrc.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
ecmaVersion: 2021,
5+
parser: 'babel-eslint',
6+
sourceType: 'module'
7+
},
8+
env: {
9+
browser: true,
10+
es6: true,
11+
node: true
12+
},
13+
extends: ['prettier'],
14+
plugins: ['promise'],
15+
globals: {
16+
Blob: true,
17+
Image: true,
18+
URL: true,
19+
Apex: true,
20+
ApexCharts: true,
21+
screen: true
22+
},
23+
overrides: [
24+
{
25+
files: ['tests/**/*.js'],
26+
globals: {
27+
describe: true,
28+
it: true,
29+
expect: true
30+
}
31+
}
32+
]
33+
}

packages/apexcharts/.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* text eol=lf
2+
3+
# These files are binary and should be left untouched
4+
# (binary is a macro for -text -diff)
5+
*.png binary
6+
*.jpg binary
7+
*.jpeg binary
8+
*.gif binary
9+
*.ico binary
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [brianlagunas]
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug Report
3+
about: 🐞 Report a bug that you found
4+
labels: bug
5+
---
6+
7+
### Description
8+
9+
<!-- REQUIRED -->
10+
<!-- Issues reporting a bug, but lacking a Reproduction WILL BE CLOSED!
11+
Please ask questions in Discussions. Issues opened
12+
that are questions will be closed without comment. -->
13+
14+
### Steps to Reproduce
15+
16+
1.
17+
2.
18+
3.
19+
20+
### Expected Behavior
21+
22+
### Actual Behavior
23+
24+
### Screenshots
25+
26+
<!-- If the issue is a visual issue, please include screenshots showing the problem if possible -->
27+
28+
### Reproduction Link
29+
30+
<!-- REQUIRED -->
31+
<!--
32+
Modify this codepen https://codepen.io/apexcharts/pen/bxzgZJ to demonstrate the problem clearly, just fork it and paste the resulting codepen in your issue. Please make sure this is a minimal example, containing only the minimum necessary code to help us troubleshoot your problem. Issues/bug reports without reproducible example WILL BE CLOSED, so make sure you include one.
33+
34+
If you are using vue-apexcharts, and want to create a demo in Vue environment, use the CodeSandbox Vue template - https://codesandbox.io/s/pwwz8009n0
35+
If you are using react-apexcharts, and want to create a demo in React environment, use the CodeSandbox React template - https://codesandbox.io/s/6yoqonyo7r
36+
-->
37+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://github.com/apexcharts/apexcharts.js/discussions/new
5+
about: Please ask and answer questions for ApexCharts here.
6+
- name: Read the Docs
7+
url: https://apexcharts.com/docs/
8+
about: Be sure you've read the docs!
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
name: Feature Request
3+
about: Suggest a feature you would like to have in ApexCharts
4+
labels: feature-request
5+
---
6+
7+
## Summary
8+
9+
Please provide a brief summary of your proposal. Two to three sentences is best here.
10+
11+
## API Changes
12+
13+
Include a list of all API changes, additions, subtractions as would be required by your proposal. These APIs should be considered placeholders, so the naming is not as important as getting the concepts correct. If possible you should include some "example" code of usage of your new API.
14+
15+
## Intended Use Case
16+
17+
Provide a detailed example of where your proposal would be used and for what purpose.
18+

0 commit comments

Comments
 (0)