Skip to content

Commit 5efd4b4

Browse files
committedNov 30, 2021
chore: dev env
1 parent 71fdd67 commit 5efd4b4

File tree

4 files changed

+131
-0
lines changed

4 files changed

+131
-0
lines changed
 

‎.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
yarn-error.log
2+
report/appium
3+
4+
# Ignore Mac files
5+
.DS_Store
6+
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# Compiled binary addons (https://nodejs.org/api/addons.html)
32+
build/Release
33+
34+
# Dependency directories
35+
node_modules/
36+
jspm_packages/
37+
38+
# TypeScript v1 declaration files
39+
typings/
40+
41+
# TypeScript cache
42+
*.tsbuildinfo
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# Ignore default target directory for the npm package 'ui5-codecompletion'
60+
.ui5
61+
62+
# UI5 tooling dist folder
63+
dist
64+
65+
# WebStorm/IntelliJ IDE
66+
.idea
67+
68+
# Gitkeep generally
69+
!/**/.gitkeep
70+
71+
# Testing
72+
!test/report/screenshots/.gitkeep
73+
test/report/screenshots/*.png
74+
!wdio-ui5-service/test/report/screenshots/.gitkeep
75+
wdio-ui5-service/test/report/screenshots/*.png
76+
test/report/logs/*.*
77+
!test/report/logs/.gitkeep
78+
test/report/appium/*.*
79+
!test/report/appium/.gitkeep
80+
# multi version tests
81+
test/wdio-wdi5*
82+
test/ui5-app/webapp/index-*.html
83+
84+
# App building
85+
test/ui5-app/app/hooks
86+
test/ui5-app/app/node_modules
87+
test/ui5-app/app/platforms
88+
test/ui5-app/app/plugins
89+
test/ui5-app/app/www
90+
91+
# .env
92+
.env
93+
!.env.example
94+
95+
# iOS build
96+
test/ui5-app/app/build.json

‎.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/fermium

‎.prettierrc

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"printWidth": 120,
3+
"trailingComma": "none",
4+
"tabWidth": 4,
5+
"useTabs": false,
6+
"semi": false,
7+
"singleQuote": false,
8+
"arrowParens": "always",
9+
"endOfLine": "lf",
10+
"overrides": [
11+
{
12+
"files": [
13+
"*.yaml",
14+
"*.yml",
15+
"*.json",
16+
"*.md"
17+
],
18+
"options": {
19+
"tabWidth": 2
20+
}
21+
}
22+
]
23+
}

‎.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"search.exclude": {
4+
"/test/ui5-app/app/platforms": true,
5+
"/test/ui5-app/app/plugins": true,
6+
"/test/ui5-app/app/www": true
7+
},
8+
"[typescript]": {
9+
"editor.defaultFormatter": "esbenp.prettier-vscode"
10+
}
11+
}

0 commit comments

Comments
 (0)
Please sign in to comment.