This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
forked from almende/vis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replaces live vis with our local vis
- Loading branch information
1 parent
0b2a54a
commit 38d6be0
Showing
458 changed files
with
112,449 additions
and
119,160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"presets": ["es2015"], | ||
"plugins": [ | ||
"transform-es3-property-literals", | ||
"transform-es3-member-expression-literals", | ||
"transform-runtime" | ||
] | ||
} | ||
{ | ||
"presets": ["es2015"], | ||
"plugins": [ | ||
"transform-es3-property-literals", | ||
"transform-es3-member-expression-literals", | ||
"transform-runtime" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
languages: | ||
JavaScript: true | ||
engines: | ||
eslint: | ||
enabled: true | ||
csslint: | ||
enabled: true | ||
markdownlint: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
javascript: | ||
mass_threshold: 300 | ||
fixme : | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**/*.js" | ||
- "**/*.css" | ||
- "**/*.md" | ||
exclude_paths: | ||
- "dist/**/*" | ||
- "docs/**/*" | ||
- "examples/**/*" | ||
languages: | ||
JavaScript: true | ||
engines: | ||
eslint: | ||
enabled: true | ||
csslint: | ||
enabled: true | ||
markdownlint: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
javascript: | ||
mass_threshold: 300 | ||
fixme : | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**/*.js" | ||
- "**/*.css" | ||
- "**/*.md" | ||
exclude_paths: | ||
- "dist/**/*" | ||
- "docs/**/*" | ||
- "examples/**/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"adjoining-classes": false, | ||
"box-model": false, | ||
"box-sizing": false, | ||
"order-alphabetical": false | ||
} | ||
{ | ||
"adjoining-classes": false, | ||
"box-model": false, | ||
"box-sizing": false, | ||
"order-alphabetical": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
|
||
"parserOptions": { | ||
"sourceType": "module", | ||
}, | ||
|
||
"extends": "eslint:recommended", | ||
|
||
// For the full list of rules, see: http://eslint.org/docs/rules/ | ||
"rules": { | ||
"complexity": [2, 55], | ||
"max-statements": [2, 115], | ||
"no-unreachable": 1, | ||
"no-useless-escape": 0, | ||
|
||
"no-console": 0, | ||
// To flag presence of console.log without breaking linting: | ||
//"no-console": ["warn", { allow: ["warn", "error"] }], | ||
|
||
"require-jsdoc": ["error", { | ||
"require": { | ||
"FunctionDeclaration": true, | ||
"MethodDefinition": true, | ||
"ClassDeclaration": true, | ||
"ArrowFunctionExpression": false | ||
} | ||
}], | ||
"valid-jsdoc": [2, { | ||
"requireReturnDescription": false, | ||
"requireReturn": false, | ||
"requireParamDescription": false, | ||
"requireReturnType": true | ||
}], | ||
"guard-for-in": 1, | ||
}, | ||
} | ||
{ | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"parserOptions": { | ||
"sourceType": "module", | ||
}, | ||
"extends": "eslint:recommended", | ||
// For the full list of rules, see: http://eslint.org/docs/rules/ | ||
"rules": { | ||
"complexity": [2, 55], | ||
"max-statements": [2, 115], | ||
"no-unreachable": 1, | ||
"no-useless-escape": 0, | ||
"no-console": 0, | ||
// To flag presence of console.log without breaking linting: | ||
//"no-console": ["warn", { allow: ["warn", "error"] }], | ||
"require-jsdoc": ["error", { | ||
"require": { | ||
"FunctionDeclaration": true, | ||
"MethodDefinition": true, | ||
"ClassDeclaration": true, | ||
"ArrowFunctionExpression": false | ||
} | ||
}], | ||
"valid-jsdoc": [2, { | ||
"requireReturnDescription": false, | ||
"requireReturn": false, | ||
"requireParamDescription": false, | ||
"requireReturnType": true | ||
}], | ||
"guard-for-in": 1, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Markdown Lint Rules | ||
// https://github.com/mivok/markdownlint/blob/master/docs/RULES.md | ||
|
||
rules | ||
"~MD012", // alert on multiple consecutive blank lines | ||
"~MD013", // line length should be no more than 80 characters | ||
"~MD014", // Dollar signs used before commands without showing output | ||
// Markdown Lint Rules | ||
// https://github.com/mivok/markdownlint/blob/master/docs/RULES.md | ||
rules | ||
"~MD012", // alert on multiple consecutive blank lines | ||
"~MD013", // line length should be no more than 80 characters | ||
"~MD014", // Dollar signs used before commands without showing output |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,18 @@ | ||
language: node_js | ||
node_js: | ||
- "6" | ||
env: | ||
- CXX=g++-4.8 | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- libgif-dev | ||
- g++-4.8 | ||
code_climate: | ||
repo_token: 07de009e5f4d0a43c51b18f3443b2fe7ddcf3fea206e75c3a81b1c4030657f69 | ||
cache: | ||
directories: | ||
- node_modules | ||
before_script: | ||
- npm run lint | ||
- npm install gulp | ||
script: | ||
- gulp | ||
- npm run-script test-cov | ||
after_script: | ||
- npm install -g codeclimate-test-reporter | ||
- codeclimate-test-reporter < ./coverage/lcov.info | ||
language: node_js | ||
node_js: | ||
- "6" | ||
env: | ||
- CXX=g++-4.8 | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- libgif-dev | ||
- g++-4.8 | ||
before_script: | ||
- npm run lint | ||
- npm install gulp | ||
script: | ||
- gulp | ||
- npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
# Contributing | ||
|
||
This project is no longer in active development. See #4259 for details. | ||
|
||
Please consider contributing to the [visjs community](https://github.com/visjs)! | ||
## Contributing | ||
|
||
[Contributions](//github.com/almende/vis/blob/master/misc/how_to_help.md) to the vis.js library are very welcome! [We can't do this alone](//github.com/almende/vis/blob/master/misc/we_need_help.md). | ||
|
||
### Questions | ||
If you have any *general question* on how to use the vis.js library in your own project please check out [stackoverflow](http://stackoverflow.com/questions/tagged/vis.js) for thinks like that. **This is NOT a JavaScript help forum!** | ||
|
||
### Bugs, Problems and Feature-Requests | ||
If you really want to open a new issue: | ||
* Please use the [search functionality](//github.com/almende/vis/issues) to make sure that there is not already an issue concerning the same topic. | ||
* Please make sure to **mention which module** of vis.js (network, timeline, graph3d, ...) your are referring to. | ||
* Note that development happens on the `develop` git branch. Be sure to submit PRs against this branch. | ||
* If you think you found a bug please **provide a simple example** (e.g. on [jsbin](jsbin.com)) that demonstrates the problem. | ||
* If you want to propose a feature-request please **describe what you are looking for in detail**, ideally providing a screenshot, drawing or something similar. | ||
* **Close the issue later**, when the issue is no longer needed. |
Oops, something went wrong.