Skip to content

Commit 9a22fc9

Browse files
Add files via upload
0 parents  commit 9a22fc9

12 files changed

+18297
-0
lines changed

.babelrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"presets": ["@babel/preset-react", "@babel/preset-env"],
3+
"plugins": ["rewire",["@babel/plugin-proposal-decorators",{'legacy':true}],["@babel/plugin-proposal-class-properties",{'loose':true}],"@babel/plugin-syntax-dynamic-import"]
4+
}

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org //have consistency in our specing in the team
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src/services/web/api/mock/*
2+
!src/services/web/api/mock/mockOsaViewerApi.js
3+
*.config.js

.eslintrc

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
7+
"parser": "babel-eslint",
8+
9+
"parserOptions": {
10+
"sourceType": "module"
11+
},
12+
13+
"plugins": [
14+
"react",
15+
"babel"
16+
],
17+
"rules": {
18+
"require-yield": 0,
19+
"generator-star-spacing": 0,
20+
"babel/generator-star-spacing": 2,
21+
"indent": [
22+
0,
23+
"tab"
24+
],
25+
"linebreak-style": [
26+
0,
27+
"windows"
28+
],
29+
"semi": [
30+
"error",
31+
"always"
32+
],
33+
"strict": [
34+
"warn",
35+
"global"
36+
37+
],
38+
"comma-dangle": [
39+
"warn",
40+
"never"
41+
42+
],
43+
"comma-style": [
44+
"warn",
45+
"last"
46+
47+
],
48+
"max-depth": [
49+
"warn",
50+
4
51+
],
52+
"max-len": [
53+
"warn",
54+
180
55+
],
56+
"no-multiple-empty-lines": [
57+
"warn",
58+
{
59+
"max": 3
60+
61+
}
62+
],
63+
"quotes": [
64+
"warn",
65+
"single",
66+
{"allowTemplateLiterals": true}
67+
],
68+
"new-cap":0,
69+
"camelcase": "warn",
70+
"brace-style": 0,
71+
"id-length": 0, // min 2
72+
"object-property-newline": 0,
73+
"object-curly-newline": 0,
74+
"quote-props": 0,
75+
"no-cond-assign": "warn",
76+
"no-console": "warn",
77+
"no-debugger": "warn",
78+
"no-empty": "warn",
79+
"valid-jsdoc": "warn",
80+
"dot-notation": 0,
81+
"no-multi-spaces": "warn",
82+
"no-sequences": "warn"
83+
}
84+
}

.gitconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[merge]
2+
tool = kdiff3
3+
[diff]
4+
guitool = kdiff3
5+
[core]
6+
editor = \"C:/Program Files (x86)/GitExtensions/GitExtensions.exe\" fileeditor
7+
[user]
8+
name = erezye
9+

.gitconfig.backup

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[merge]
2+
tool = kdiff3
3+
[diff]
4+
guitool = kdiff3
5+
[core]
6+
editor = \"C:/Program Files (x86)/GitExtensions/GitExtensions.exe\" fileeditor
7+
[user]
8+
name = erezye

0 commit comments

Comments
 (0)