Skip to content

Commit 498346d

Browse files
committed
Initial commit
0 parents  commit 498346d

File tree

197 files changed

+8669
-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.

197 files changed

+8669
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# see http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
8+
[*.{css,html,js,json,less,txt}]
9+
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
tab_width = 4
12+
13+
[*.md]
14+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# /node_modules/* and /bower_components/* ignored by default
2+
3+
# Exclude coverage folder
4+
coverage/
5+
6+
# Exclude test files
7+
test/tmp/
8+
test/expected/
9+
test/fixtures/
10+
11+
# Exlucde JSDoc output
12+
docs/
13+
jsdocs/

.eslintrc.js

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
module.exports = {
2+
"env": {
3+
"node": true,
4+
"es6": true
5+
},
6+
"parserOptions": {
7+
"ecmaVersion": 8
8+
},
9+
"extends": ["eslint:recommended", "google"],
10+
"rules": {
11+
"indent": [
12+
"error",
13+
"tab"
14+
],
15+
"linebreak-style": [
16+
"error",
17+
"unix"
18+
],
19+
"quotes": [
20+
"error",
21+
"double"
22+
],
23+
"semi": [
24+
"error",
25+
"always"
26+
],
27+
"no-negated-condition": "off",
28+
"require-jsdoc": "off",
29+
"no-mixed-requires": "off",
30+
"max-len": ["warn", 120],
31+
"no-implicit-coercion": [
32+
2,
33+
{ "allow": ["!!"] }
34+
],
35+
"comma-dangle": "off",
36+
"no-var": "off",
37+
"no-tabs": "off",
38+
"no-console": "off", // until we have better logging
39+
'valid-jsdoc': [
40+
2,
41+
{
42+
requireParamDescription: false,
43+
requireReturnDescription: false,
44+
requireReturn: false,
45+
prefer: {return: 'returns'},
46+
}
47+
],
48+
},
49+
"root": true
50+
};

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
*.js text eol=lf

.github/ISSUE_TEMPLATE.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## Expected Behavior
2+
{...}
3+
4+
## Current Behavior
5+
{...}
6+
7+
## Steps to reproduce the issue
8+
1. {...}
9+
2. {...}
10+
3. {...}
11+
12+
## Context
13+
- OS/Platform: {...}
14+
- Node.js Version: {...}
15+
- npm Version: {...}
16+
- Browser *(if relevant)*: {...}
17+
- Other information: {...}
18+
19+
## Affected components
20+
- [ ] [ui5-builder](https://github.com/SAP/ui5-builder)
21+
- [ ] [ui5-server](https://github.com/SAP/ui5-server)
22+
- [ ] [ui5-cli](https://github.com/SAP/ui5-cli)
23+
- [ ] [ui5-fs](https://github.com/SAP/ui5-fs)
24+
- [ ] [ui5-project](https://github.com/SAP/ui5-project)
25+
- [ ] [ui5-logger](https://github.com/SAP/ui5-logger)
26+
27+
## Stack trace/log output
28+
```
29+
{logs}
30+
```

.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# IDEs
21+
.vscode/
22+
*.~vsdx
23+
.idea/
24+
25+
# node-waf configuration
26+
.lock-wscript
27+
28+
# Compiled binary addons (http://nodejs.org/api/addons.html)
29+
build/Release
30+
31+
# Dependency directories
32+
node_modules
33+
jspm_packages
34+
35+
# Optional npm cache directory
36+
.npm
37+
38+
# Optional eslint cache
39+
.eslintcache
40+
41+
# Optional REPL history
42+
.node_repl_history
43+
44+
# Output of 'npm pack'
45+
*.tgz
46+
47+
# Yarn Integrity file
48+
.yarn-integrity
49+
50+
# Misc
51+
yarn.lock
52+
.DS_Store
53+
54+
# Don't include private SSH key for deployment via Travis CI
55+
deploy_key
56+
57+
# Custom directories
58+
test/tmp/
59+
jsdocs/

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js # don't install any environment
2+
3+
node_js:
4+
- "8"

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing to the UI5 Build and Development Tooling
2+
3+
See CONTRIBUTING.md in the [SAP/ui5-tooling](https://github.com/SAP/ui5-tooling/CONTRIBUTING.md) repository.

0 commit comments

Comments
 (0)