Skip to content
This repository was archived by the owner on May 2, 2022. It is now read-only.

Commit f48d565

Browse files
committed
Merge branch 'release/v1.0.0'
2 parents 4e767fa + ee63986 commit f48d565

664 files changed

Lines changed: 597997 additions & 3358 deletions

File tree

Some content is hidden

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

.babelrc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false
7+
}
8+
]
9+
],
10+
"env": {
11+
"test": {
12+
"plugins": [
13+
"istanbul"
14+
]
15+
}
16+
}
17+
}

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
packages/muze/npm/*
2+
packages/*/node_modules/*
3+
packages/*/example/*
4+
packages/*/test/*
5+
dist/*

.eslintrc

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
{
2+
"env": {
3+
"es6": true,
4+
"browser": true
5+
},
6+
"extends": "airbnb",
7+
"parser": "babel-eslint",
8+
"rules": {
9+
"func-names": [
10+
"error",
11+
"never"
12+
],
13+
14+
"import/extensions": "off",
15+
"indent": [
16+
"error",
17+
4,
18+
{
19+
"MemberExpression": 4
20+
}
21+
],
22+
"space-before-function-paren": [
23+
"error",
24+
"always"
25+
],
26+
"no-multi-assign": "off",
27+
"max-len": [
28+
"error",
29+
120
30+
],
31+
"one-var": [
32+
"error",
33+
"never"
34+
],
35+
"no-plusplus": "off",
36+
"no-continue": "off",
37+
"no-unused-expressions": "off",
38+
"class-methods-use-this": "off",
39+
"import/prefer-default-export": "off",
40+
"no-multiple-empty-lines": [
41+
"error",
42+
{
43+
"max": 1,
44+
"maxEOF": 1,
45+
"maxBOF": 0
46+
}
47+
],
48+
"comma-dangle": ["error", "never"],
49+
"no-underscore-dangle": 0,
50+
"no-mixed-operators": 0,
51+
"no-loop-func": "warn",
52+
"no-param-reassign": "off",
53+
"no-iterator": "off",
54+
"guard-for-in": "warn",
55+
"no-nested-ternary": "off",
56+
"import/no-extraneous-dependencies": "off",
57+
"no-cond-assign": "off",
58+
"no-restricted-syntax": [
59+
"error",
60+
"LabeledStatement",
61+
"WithStatement"
62+
],
63+
"require-jsdoc": [
64+
"warn",
65+
{
66+
"require": {
67+
"FunctionDeclaration": true,
68+
"MethodDefinition": true,
69+
"ClassDeclaration": true,
70+
"ArrowFunctionExpression": true
71+
}
72+
}
73+
],
74+
"valid-jsdoc": [
75+
"warn",
76+
{
77+
"prefer": {
78+
"arg": "param",
79+
"argument": "param",
80+
"returns": "return",
81+
"constructor": "class",
82+
"augments": "extends",
83+
"const": "constant",
84+
"defaultvalue": "default",
85+
"desc": "description",
86+
"host": "external",
87+
"fileoverview": "file",
88+
"overview": "file",
89+
"emits": "fires",
90+
"var": "member",
91+
"prop": "property",
92+
"exception": "throws"
93+
},
94+
"preferType": {
95+
"Boolean": "boolean",
96+
"Null": "null",
97+
"Undefined": "undefined",
98+
"Number": "number",
99+
"String": "string",
100+
"Symbol": "symbol",
101+
"object": "Object",
102+
"array": "Array",
103+
"function": "Function"
104+
},
105+
"requireReturn": false,
106+
"matchDescription": ".+"
107+
}
108+
]
109+
}
110+
}

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/ISSUE_TEMPLATE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!--
2+
Note: If the issue is about feature request, then please also create the same on our feedback website, with the issue id. We will prioritize the feature requests based on the upvotes on our feedback site.
3+
Visit at: https://feedback.muze.charts.com
4+
-->
5+
6+
**Do you want to request a *feature* or report a *bug*?**
7+
8+
**What is the current behavior?**
9+
10+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code. You can either a scale down sample, JSFiddle or JSBin link**
11+
12+
**What is the expected behavior?**
13+
14+
**Which versions of MuzeJS, and which browser/OS are affected by this issue? Did this work in previous versions of MuzeJS?**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
**Before submitting a pull request,** please make sure the following is done:
2+
3+
1. Fork [the repository](https://github.com/chartshq/muze).
4+
2. Initialize `git flow` and create a separate branch from develop.
5+
3. Run `npm install` in the repository root.
6+
4. Make sure your code lints (`npm run lint`)

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,9 @@ typings/
103103
# Serverless directories
104104
.serverless
105105

106+
packages/*/.nsi.json
107+
108+
packages/*/node_modules/
109+
*/**/package-lock.json
106110

107111
# End of https://www.gitignore.io/api/node,macos

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Akash Ghoswami <akash@charts.com>
2+
Mridul Meharia <mridul@charts.com>
3+
Ranajit Banerjee <ranajit.banerjee@charts.com>
4+
Sushrut Shivaswamy <sushrut@charts.com>
5+
Rousan Ali <rousan@charts.com>
6+
Sandeep Acharya <sandeep@charts.com>
7+
Subhash Haldar <subhash@charts.com>
8+
Ujjal Kumar Dutta <ujjal@charts.com>

CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Contribution Guidelines
2+
3+
The new features and bug fixes are merged into `develop` branch. The `master` branch
4+
contains the latest stable release.
5+
6+
Please, try to follow:
7+
8+
* Clone the repository.
9+
* Checkout `develop` branch.
10+
* Create feature or bug fixing branch using `git flow`
11+
* Install dependencies.
12+
* Add your new features or fixes.
13+
* Build the project.
14+
* Send PR.
15+
16+
```sh
17+
$ git clone https://github.com/chartshq/muze.git
18+
$ cd muze
19+
$ git checkout develop
20+
$ git flow init
21+
$ git flow feature start <your-feature-branch-name>
22+
$ npm install
23+
$ npm run build
24+
```

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Charts.com
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)