Skip to content

Commit 4a515f6

Browse files
committed
init for build of v2022.9.21.4
0 parents  commit 4a515f6

Some content is hidden

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

55 files changed

+5648
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = tab
8+
indent_size = 4
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
14+
[*.{cmd,bat}]
15+
end_of_line = crlf

.eslintrc.js

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
commonjs: true,
5+
es6: true,
6+
node: true,
7+
},
8+
extends: [
9+
"plugin:react/recommended",
10+
"standard",
11+
],
12+
parserOptions: {
13+
ecmaFeatures: {
14+
jsx: true,
15+
},
16+
ecmaVersion: 2018,
17+
},
18+
plugins: [
19+
"react",
20+
],
21+
globals: {
22+
Atomics: "readonly",
23+
SharedArrayBuffer: "readonly",
24+
colors: true,
25+
com: true,
26+
importClass: true,
27+
storages: true,
28+
device: true,
29+
log: true,
30+
threads: true,
31+
exit: true,
32+
runtime: true,
33+
java: true,
34+
importPackage: true,
35+
YuvImage: true,
36+
ImageFormat: true,
37+
ui: true,
38+
activity: true,
39+
View: true,
40+
context: true,
41+
ObjectAnimator: true,
42+
BinaryBitmap: true,
43+
HybridBinarizer: true,
44+
RGBLuminanceSource: true,
45+
MultiFormatReader: true,
46+
sleep: true,
47+
util: true,
48+
android: true,
49+
Paint: true,
50+
PorterDuffXfermode: true,
51+
PorterDuff: true,
52+
toastLog: true,
53+
ByteArrayOutputStream: true,
54+
Rect: true,
55+
ActivityCompat: true,
56+
files: true,
57+
requestScreenCapture: true,
58+
http: true,
59+
toast: true,
60+
engines: true,
61+
random: true,
62+
events: true,
63+
press: true,
64+
Tap: true,
65+
gesture: true,
66+
Swipe: true,
67+
getPackageName: true,
68+
shell: true,
69+
floaty: true,
70+
currentPackage: true,
71+
Canvas: true,
72+
launch: true,
73+
FileOutputStream: true,
74+
app: true,
75+
images: true,
76+
launchApp: true,
77+
Bitmap: true,
78+
className: true,
79+
Buffer: true,
80+
idEndsWith: true,
81+
textEndsWith: true,
82+
descEndsWith: true,
83+
text: true,
84+
back: true,
85+
textMatches: true,
86+
textStartsWith: true,
87+
id: true,
88+
desc: true,
89+
descStartsWith: true,
90+
AnimatorSet: true,
91+
click: true,
92+
PendingIntent: true,
93+
dialogs: true,
94+
auto: true,
95+
Settings: true,
96+
setClip: true,
97+
Context: true,
98+
getClip: true,
99+
DevicePolicyManager: true,
100+
Intent: true,
101+
ComponentName: true,
102+
Cipher: true,
103+
IvParameterSpec: true,
104+
SecretKeySpec: true,
105+
javax: true,
106+
BASE64Decoder: true,
107+
NotificationManager: true,
108+
NotificationChannel: true,
109+
Uri: true,
110+
media: true,
111+
ServerSocket: true,
112+
DataInputStream: true,
113+
DataOutputStream: true,
114+
Socket: true,
115+
JavaAdapter: true,
116+
WebChromeClient: true,
117+
ValueCallback: true,
118+
captureScreen: true,
119+
timers: true,
120+
selector: true,
121+
recents: true,
122+
swipe: true,
123+
waitForActivity: true,
124+
waitForPackage: true,
125+
currentActivity: true,
126+
},
127+
rules: {
128+
"indent": ["error", "tab"],
129+
"quotes": ["error", "double"],
130+
"semi": ["error", "always"],
131+
"block-spacing": ["error", "always"],
132+
"array-bracket-spacing": ["error", "never"],
133+
"quote-props": ["error", "consistent-as-needed"],
134+
"comma-dangle": ["error", "always-multiline"],
135+
"no-tabs": ["off"],
136+
},
137+
};

.gitignore

Lines changed: 199 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,199 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,node
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,node
4+
5+
### Node ###
6+
# Logs
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
lerna-debug.log*
13+
.pnpm-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+
# nyc test coverage
32+
.nyc_output
33+
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
35+
.grunt
36+
37+
# Bower dependency directory (https://bower.io/)
38+
bower_components
39+
40+
# node-waf configuration
41+
.lock-wscript
42+
43+
# Compiled binary addons (https://nodejs.org/api/addons.html)
44+
build/Release
45+
46+
# Dependency directories
47+
node_modules/
48+
jspm_packages/
49+
50+
# Snowpack dependency directory (https://snowpack.dev/)
51+
web_modules/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
55+
56+
# Optional npm cache directory
57+
.npm
58+
59+
# Optional eslint cache
60+
.eslintcache
61+
62+
# Optional stylelint cache
63+
.stylelintcache
64+
65+
# Microbundle cache
66+
.rpt2_cache/
67+
.rts2_cache_cjs/
68+
.rts2_cache_es/
69+
.rts2_cache_umd/
70+
71+
# Optional REPL history
72+
.node_repl_history
73+
74+
# Output of 'npm pack'
75+
*.tgz
76+
77+
# Yarn Integrity file
78+
.yarn-integrity
79+
80+
# dotenv environment variable files
81+
.env
82+
.env.development.local
83+
.env.test.local
84+
.env.production.local
85+
.env.local
86+
87+
# parcel-bundler cache (https://parceljs.org/)
88+
.cache
89+
.parcel-cache
90+
91+
# Next.js build output
92+
.next
93+
out
94+
95+
# Nuxt.js build / generate output
96+
.nuxt
97+
dist
98+
99+
# Gatsby files
100+
.cache/
101+
# Comment in the public line in if your project uses Gatsby and not Next.js
102+
# https://nextjs.org/blog/next-9-1#public-directory-support
103+
# public
104+
105+
# vuepress build output
106+
.vuepress/dist
107+
108+
# vuepress v2.x temp and cache directory
109+
.temp
110+
111+
# Docusaurus cache and generated files
112+
.docusaurus
113+
114+
# Serverless directories
115+
.serverless/
116+
117+
# FuseBox cache
118+
.fusebox/
119+
120+
# DynamoDB Local files
121+
.dynamodb/
122+
123+
# TernJS port file
124+
.tern-port
125+
126+
# Stores VSCode versions used for testing VSCode extensions
127+
.vscode-test
128+
129+
# yarn v2
130+
.yarn/cache
131+
.yarn/unplugged
132+
.yarn/build-state.yml
133+
.yarn/install-state.gz
134+
.pnp.*
135+
136+
### Node Patch ###
137+
# Serverless Webpack directories
138+
.webpack/
139+
140+
# Optional stylelint cache
141+
142+
# SvelteKit build / generate output
143+
.svelte-kit
144+
145+
### VisualStudioCode ###
146+
.vscode/*
147+
!.vscode/settings.json
148+
!.vscode/tasks.json
149+
!.vscode/launch.json
150+
!.vscode/extensions.json
151+
!.vscode/*.code-snippets
152+
153+
# Local History for Visual Studio Code
154+
.history/
155+
156+
# Built Visual Studio Code Extensions
157+
*.vsix
158+
159+
### VisualStudioCode Patch ###
160+
# Ignore all local history of files
161+
.history
162+
.ionide
163+
164+
# Support for Project snippet scope
165+
.vscode/*.code-snippets
166+
167+
# Ignore code-workspaces
168+
*.code-workspace
169+
170+
### Windows ###
171+
# Windows thumbnail cache files
172+
Thumbs.db
173+
Thumbs.db:encryptable
174+
ehthumbs.db
175+
ehthumbs_vista.db
176+
177+
# Dump file
178+
*.stackdump
179+
180+
# Folder config file
181+
[Dd]esktop.ini
182+
183+
# Recycle Bin used on file shares
184+
$RECYCLE.BIN/
185+
186+
# Windows Installer files
187+
*.cab
188+
*.msi
189+
*.msix
190+
*.msm
191+
*.msp
192+
193+
# Windows shortcuts
194+
*.lnk
195+
196+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,node
197+
198+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
199+

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Chaos
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)