Skip to content

Commit 6a9a4d8

Browse files
committed
[new] v1 release
1 parent e71b461 commit 6a9a4d8

File tree

467 files changed

+13782
-0
lines changed

Some content is hidden

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

467 files changed

+13782
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": [ "react", "env", "stage-2" ]
3+
}

.eslintrc

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"parser": "babel-eslint",
3+
"env": {
4+
"browser": true,
5+
"node": true,
6+
"es6": true
7+
},
8+
"globals": {
9+
"_": false,
10+
"$": false
11+
},
12+
"plugins": [
13+
"babel",
14+
"react",
15+
"import"
16+
],
17+
"extends": ["eslint:recommended", "plugin:react/recommended"],
18+
"rules": {
19+
"quotes": [2, "single", {"allowTemplateLiterals": true}],
20+
"curly": 2,
21+
"strict": [2, "never"],
22+
"semi": [2, "always"],
23+
"no-redeclare": [2, { "builtinGlobals": true }],
24+
"brace-style": 2,
25+
"no-alert": 0,
26+
"no-console": [2, { "allow": ["warn", "error"] }],
27+
"object-shorthand": [2, "always"],
28+
"arrow-parens": [2, "as-needed"],
29+
"eqeqeq": 2,
30+
"jsx-quotes": 2,
31+
"react/jsx-closing-bracket-location": 2,
32+
"react/jsx-curly-spacing": 2,
33+
"react/jsx-boolean-value": 2,
34+
"react/prop-types": 2,
35+
"react/sort-comp": 0,
36+
"import/no-unresolved": 0,
37+
"import/extensions": 0,
38+
"import/no-extraneous-dependencies": 0,
39+
"import/no-dynamic-require": 0
40+
}
41+
}

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
.vscode
3+
node_modules
4+
npm-debug.log
5+
coverage
6+
annotations
7+
webviewer-ui.zip
8+
notes
9+
coverage
10+
build
11+
tests
12+
jest.config.js
13+
package-lock.json
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)