Skip to content

Commit ded6534

Browse files
committed
Push Latest Code to Repository
1 parent 89e8a50 commit ded6534

File tree

162 files changed

+24876
-100
lines changed

Some content is hidden

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

162 files changed

+24876
-100
lines changed

.babelrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/env",
5+
{
6+
"targets": {
7+
"chrome": "73",
8+
"node": 12
9+
}
10+
}
11+
],
12+
"@babel/typescript"
13+
],
14+
"plugins": [
15+
"@babel/proposal-class-properties",
16+
"@babel/proposal-object-rest-spread"
17+
]
18+
}

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = crlf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
_scripts
3+
dist

.eslintrc.js

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
module.exports = {
2+
// https://eslint.org/docs/user-guide/configuring#using-configuration-files-1
3+
root: true,
4+
5+
// https://eslint.org/docs/user-guide/configuring#specifying-environments
6+
env: {
7+
browser: true,
8+
node: true,
9+
},
10+
11+
// https://eslint.org/docs/user-guide/configuring#specifying-parser
12+
parser: 'vue-eslint-parser',
13+
14+
// https://vuejs.github.io/eslint-plugin-vue/user-guide/#faq
15+
parserOptions: {
16+
parser: 'babel-eslint',
17+
ecmaVersion: 2018,
18+
sourceType: 'module',
19+
},
20+
21+
// https://eslint.org/docs/user-guide/configuring#extending-configuration-files
22+
// order matters: from least important to most important in terms of overriding
23+
// Prettier + Vue: https://medium.com/@gogl.alex/how-to-properly-set-up-eslint-with-prettier-for-vue-or-nuxt-in-vscode-e42532099a9c
24+
extends: [
25+
'prettier/vue',
26+
'prettier',
27+
'eslint:recommended',
28+
'plugin:vue/recommended',
29+
'standard',
30+
],
31+
32+
// https://eslint.org/docs/user-guide/configuring#configuring-plugins
33+
plugins: ['vue'],
34+
35+
rules: {
36+
'vue/no-v-html': "off",
37+
'no-console': 0,
38+
'no-unused-vars': 1,
39+
'no-undef': 1,
40+
'vue/no-template-key': 1
41+
},
42+
}

.gitignore

Lines changed: 14 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,18 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
9-
# Diagnostic reports (https://nodejs.org/api/report.html)
10-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11-
12-
# Runtime data
13-
pids
14-
*.pid
15-
*.seed
16-
*.pid.lock
17-
18-
# Directory for instrumented libs generated by jscoverage/JSCover
19-
lib-cov
20-
21-
# Coverage directory used by tools like istanbul
1+
.DS_Store
2+
dist/electron/*
3+
dist/web/*
4+
build/*
5+
!build/icons
226
coverage
23-
*.lcov
24-
25-
# nyc test coverage
26-
.nyc_output
27-
28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29-
.grunt
30-
31-
# Bower dependency directory (https://bower.io/)
32-
bower_components
33-
34-
# node-waf configuration
35-
.lock-wscript
36-
37-
# Compiled binary addons (https://nodejs.org/api/addons.html)
38-
build/Release
39-
40-
# Dependency directories
417
node_modules/
42-
jspm_packages/
43-
44-
# TypeScript v1 declaration files
45-
typings/
46-
47-
# TypeScript cache
48-
*.tsbuildinfo
49-
50-
# Optional npm cache directory
51-
.npm
52-
53-
# Optional eslint cache
54-
.eslintcache
55-
56-
# Microbundle cache
57-
.rpt2_cache/
58-
.rts2_cache_cjs/
59-
.rts2_cache_es/
60-
.rts2_cache_umd/
61-
62-
# Optional REPL history
63-
.node_repl_history
64-
65-
# Output of 'npm pack'
66-
*.tgz
67-
68-
# Yarn Integrity file
69-
.yarn-integrity
70-
71-
# dotenv environment variables file
72-
.env
73-
.env.test
74-
75-
# parcel-bundler cache (https://parceljs.org/)
8+
npm-debug.log
9+
npm-debug.log.*
10+
thumbs.db
11+
!.gitkeep
12+
data/tmp/
13+
.tmp/
14+
tmp/
7615
.cache
77-
78-
# Next.js build output
79-
.next
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
8316
dist
84-
85-
# Gatsby files
86-
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88-
# https://nextjs.org/blog/next-9-1#public-directory-support
89-
# public
90-
91-
# vuepress build output
92-
.vuepress/dist
93-
94-
# Serverless directories
95-
.serverless/
96-
97-
# FuseBox cache
98-
.fusebox/
99-
100-
# DynamoDB Local files
101-
.dynamodb/
102-
103-
# TernJS port file
104-
.tern-port
17+
coverage
18+
__coverage__

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"tabWidth": 2,
5+
"trailingComma": "es5",
6+
"useTabs": false
7+
}

.travis.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
matrix:
2+
include:
3+
- os: osx
4+
osx_image: xcode9.3
5+
language: node_js
6+
node_js: '12'
7+
env:
8+
- ELECTRON_CACHE=$HOME/.cache/electron
9+
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
10+
11+
- os: linux
12+
services: docker
13+
language: node_js
14+
node_js: '12'
15+
env:
16+
- ELECTRON_CACHE=$HOME/.cache/electron
17+
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
18+
19+
cache:
20+
directories:
21+
- node_modules
22+
- $HOME/.cache/electron
23+
- $HOME/.cache/electron-builder
24+
25+
before_install:
26+
- |
27+
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
28+
mkdir -p /tmp/git-lfs && curl -L https://github.com/github/git-lfs/releases/download/v2.3.1/git-lfs-$([ "$TRAVIS_OS_NAME" == "linux" ] && echo "linux" || echo "darwin")-amd64-2.3.1.tar.gz | tar -xz -C /tmp/git-lfs --strip-components 1
29+
export PATH="/tmp/git-lfs:$PATH"
30+
fi
31+
before_script:
32+
- git lfs pull
33+
34+
script:
35+
- |
36+
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
37+
docker run --rm \
38+
--env-file <(env | grep -v '\r' | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_') \
39+
-v ${PWD}:/project \
40+
-v ~/.cache/electron:/root/.cache/electron \
41+
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
42+
electronuserland/builder:wine
43+
fi
44+
- npm run build
45+
46+
before_cache:
47+
- rm -rf $HOME/.cache/electron-builder/wine
48+
49+
branches:
50+
except:
51+
- "/^v\\d+\\.\\d+\\.\\d+$/"

.whitesource

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
##########################################################
2+
#### WhiteSource "Bolt for Github" configuration file ####
3+
##########################################################
4+
5+
# Configuration #
6+
#---------------#
7+
ws.repo.scan=true
8+
vulnerable.check.run.conclusion.level=failure

_icons/256x256.png

5.95 KB
Loading

_icons/icon.icns

67.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)