Skip to content

Commit

Permalink
upgrade(ckb): 0.1.3-alpha.6
Browse files Browse the repository at this point in the history
  • Loading branch information
neoddish committed Feb 14, 2020
1 parent 41cf13f commit 64eba69
Show file tree
Hide file tree
Showing 17 changed files with 12,746 additions and 8 deletions.
11 changes: 11 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
node_modules/
lib/
coverage/
es/
dist/
temp/
typings/
docs/
jest.config.js
webpack.config.js
40 changes: 40 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"impliedStrict": true
},
"rules": {
"no-sparse-arrays": 0,
"no-inner-declarations": 0,
"prettier/prettier": 2,
"@typescript-eslint/indent": 0,
"no-constant-condition": 0,
"@typescript-eslint/no-unused-vars": [
2,
{
"args": "after-used",
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-member-accessibility": [2, { "accessibility": "no-public" }],
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-use-before-define": [2, { "functions": false }],
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/no-empty-interface": 1,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-explicit-any": 0
}
}
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
.DS_Store
node_modules/
lib/
coverage/
es/
dist/
node_modules
temp/
typings/
apis/
lerna-debug.log
yarn-error.log
.vscode
yarn.lock
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120,
"arrowParens": "always"
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 AntV team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do { so, subject } to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://gw.alipayobjects.com/zos/antfincdn/R8sN%24GNdh6/language.svg" width="18"> English | [简体中文](./zh-CN/README.zh-CN.md)

<div align="center">
<img width="200" height="120" src="./img/logo.svg" alt="AVA logo">
<img width="200" height="120" src="./common/img/logo.svg" alt="AVA logo">
</div>

<div align="center">
Expand All @@ -12,9 +12,9 @@

----

<a href="https://d3js.org"><img src="./img/vectorA.svg" align="left" hspace="10" vspace="6"></a>
<a href="https://d3js.org"><img src="./common/img/vectorA.svg" align="left" hspace="10" vspace="6"></a>

**AVA** (![](./img/vectorASymbol.svg) Visual Analytics) is a framework (or a solution) for more convenient visual analytics. The first **A** of AVA has many meanings. It states that this framework is from *Alibaba*, and its goal is to become an *Automated*, *AI driven* solution that supports *Augmented* analytics.
**AVA** (![](./common/img/vectorASymbol.svg) Visual Analytics) is a framework (or a solution) for more convenient visual analytics. The first **A** of AVA has many meanings. It states that this framework is from *Alibaba*, and its goal is to become an *Automated*, *AI driven* solution that supports *Augmented* analytics.

<br />

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
12 changes: 12 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
preset: 'ts-jest',
globals: {
'ts-jest': {
diagnostics: false,
},
},
browser: false,
testPathIgnorePatterns: ['/node_modules/'],
collectCoverage: false,
collectCoverageFrom: ['packages/**/src/**/*.ts'],
};
19 changes: 19 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"packages": [
"packages/knowledge"
],
"npmClient": "yarn",
"command": {
"publish": {
"--no-push": true,
"--no-commit-hooks": true,
"registry": "https://registry.npmjs.org/"
},
"bootstrap": {
"npmClientArgs": [
"--no-lockfile"
]
}
},
"version": "0.1.3-alpha.0"
}
Loading

0 comments on commit 64eba69

Please sign in to comment.