Skip to content

Commit cfba132

Browse files
committed
chore: original sources pre-scan
Private repo reference: =========================== Commit: 80e17819bd280d48867dc1efc53c5ef57293c346 Parents: 5caf10aa0003d98403992ce22c0a3699fe6e59ee Author: hugo.borne-pons <[email protected]> Date: Thu Oct 24 2019 04:49:40 GMT-0700 (Pacific Daylight Time) Committer: hugo.borne-pons renaming npm module to align =========================== Signed-off-by: Peter Somogyvari <[email protected]>
1 parent 6c5957c commit cfba132

File tree

530 files changed

+191713
-18
lines changed

Some content is hidden

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

530 files changed

+191713
-18
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
test

.eslintrc

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"rules": {
3+
"max-len": ["error", { "code": 120 }],
4+
"indent": [
5+
2,
6+
2,
7+
{
8+
"SwitchCase": 1
9+
}
10+
],
11+
"space-before-function-paren": [
12+
2,
13+
{
14+
"anonymous": "never",
15+
"named": "never",
16+
"asyncArrow": "always"
17+
}
18+
],
19+
"no-use-before-define": [2, "nofunc"],
20+
"comma-dangle": ["error", "always-multiline"],
21+
"arrow-parens": ["error", "as-needed"],
22+
"import/no-extraneous-dependencies": [
23+
"error",
24+
{
25+
"devDependencies": true
26+
}
27+
],
28+
"no-underscore-dangle": [0],
29+
"linebreak-style": [0, "error", "windows"],
30+
"function-paren-newline": ["off"],
31+
"object-curly-newline": ["error", { "consistent": true }],
32+
"prettier/prettier": "error"
33+
},
34+
"env": {
35+
"node": true,
36+
"mocha": true
37+
},
38+
"parserOptions": {
39+
"ecmaVersion": 2018,
40+
"sourceType": "module"
41+
},
42+
"plugins": ["prettier"],
43+
"extends": ["eslint:recommended", "airbnb-base", "prettier"]
44+
}

.gitattributes

+196
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,196 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT
13+
## Handle line endings automatically for files detected as
14+
## text and leave all files detected as binary untouched.
15+
## This will handle all files NOT defined below.
16+
* text=auto
17+
18+
## SOURCE CODE
19+
*.bat text eol=crlf
20+
*.coffee text
21+
*.css text
22+
*.htm text diff=html
23+
*.html text diff=html
24+
*.inc text
25+
*.ini text
26+
*.js text
27+
*.json text
28+
*.jsx text
29+
*.less text
30+
*.od text
31+
*.onlydata text
32+
*.php text diff=php
33+
*.pl text
34+
*.py text diff=python
35+
*.rb text diff=ruby
36+
*.sass text
37+
*.scm text
38+
*.scss text
39+
*.sh text eol=lf
40+
*.sql text
41+
*.styl text
42+
*.tag text
43+
*.ts text
44+
*.tsx text
45+
*.vue text
46+
*.xml text
47+
*.xhtml text diff=html
48+
49+
## DOCKER
50+
*.dockerignore text
51+
Dockerfile text
52+
53+
## DOCUMENTATION
54+
*.ipynb text
55+
*.markdown text
56+
*.md text
57+
*.mdwn text
58+
*.mdown text
59+
*.mkd text
60+
*.mkdn text
61+
*.mdtxt text
62+
*.mdtext text
63+
*.txt text
64+
AUTHORS text
65+
CHANGELOG text
66+
CHANGES text
67+
CONTRIBUTING text
68+
COPYING text
69+
copyright text
70+
*COPYRIGHT* text
71+
INSTALL text
72+
license text
73+
LICENSE text
74+
NEWS text
75+
readme text
76+
*README* text
77+
TODO text
78+
79+
## TEMPLATES
80+
*.dot text
81+
*.ejs text
82+
*.haml text
83+
*.handlebars text
84+
*.hbs text
85+
*.hbt text
86+
*.jade text
87+
*.latte text
88+
*.mustache text
89+
*.njk text
90+
*.phtml text
91+
*.tmpl text
92+
*.tpl text
93+
*.twig text
94+
95+
## LINTERS
96+
.csslintrc text
97+
.eslintrc text
98+
.htmlhintrc text
99+
.jscsrc text
100+
.jshintrc text
101+
.jshintignore text
102+
.stylelintrc text
103+
104+
## CONFIGS
105+
*.bowerrc text
106+
*.cnf text
107+
*.conf text
108+
*.config text
109+
.babelrc text
110+
.browserslistrc text
111+
.editorconfig text
112+
.env text
113+
.gitattributes text
114+
.gitconfig text
115+
.htaccess text
116+
*.lock text
117+
*.npmignore text
118+
*.yaml text
119+
*.yml text
120+
browserslist text
121+
Makefile text
122+
makefile text
123+
124+
## HEROKU
125+
Procfile text
126+
.slugignore text
127+
128+
## GRAPHICS
129+
*.ai binary
130+
*.bmp binary
131+
*.eps binary
132+
*.gif binary
133+
*.ico binary
134+
*.jng binary
135+
*.jp2 binary
136+
*.jpg binary
137+
*.jpeg binary
138+
*.jpx binary
139+
*.jxr binary
140+
*.pdf binary
141+
*.png binary
142+
*.psb binary
143+
*.psd binary
144+
*.svg text
145+
*.svgz binary
146+
*.tif binary
147+
*.tiff binary
148+
*.wbmp binary
149+
*.webp binary
150+
151+
## AUDIO
152+
*.kar binary
153+
*.m4a binary
154+
*.mid binary
155+
*.midi binary
156+
*.mp3 binary
157+
*.ogg binary
158+
*.ra binary
159+
160+
## VIDEO
161+
*.3gpp binary
162+
*.3gp binary
163+
*.as binary
164+
*.asf binary
165+
*.asx binary
166+
*.fla binary
167+
*.flv binary
168+
*.m4v binary
169+
*.mng binary
170+
*.mov binary
171+
*.mp4 binary
172+
*.mpeg binary
173+
*.mpg binary
174+
*.ogv binary
175+
*.swc binary
176+
*.swf binary
177+
*.webm binary
178+
179+
## ARCHIVES
180+
*.7z binary
181+
*.gz binary
182+
*.jar binary
183+
*.rar binary
184+
*.tar binary
185+
*.zip binary
186+
187+
## FONTS
188+
*.ttf binary
189+
*.eot binary
190+
*.otf binary
191+
*.woff binary
192+
*.woff2 binary
193+
194+
## EXECUTABLES
195+
*.exe binary
196+
*.pyc binary

.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.DS_Store
2+
node_modules/
3+
docs/main
4+
logs/
5+
jspm_packages/
6+
7+
# TypeScript v1 declaration files
8+
typings/
9+
10+
# Optional npm cache directory
11+
.npm
12+
13+
# Optional eslint cache
14+
.eslintcache
15+
16+
# Optional REPL history
17+
.node_repl_history
18+
19+
# Output of 'npm pack'
20+
*.tgz
21+
22+
# Yarn Integrity file
23+
.yarn-integrity
24+
25+
# next.js build output
26+
.next
27+
28+
# vscode files
29+
.vscode/
30+
31+
# Introperability App specifics
32+
examples/simple-asset-transfer/fabric/**/hfc-key-store/
33+
34+

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
engine-strict=true
2+
package-lock=true

.prettierrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"printWidth": 120,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "es5",
8+
"bracketSpacing": true,
9+
"arrowParens": "avoid",
10+
"parser": "babylon"
11+
}

0 commit comments

Comments
 (0)