Skip to content
This repository was archived by the owner on Jan 19, 2023. It is now read-only.

Commit cdeb043

Browse files
committed
Init
0 parents  commit cdeb043

File tree

132 files changed

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

132 files changed

+19995
-0
lines changed

.dockerignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
.eslintcache
25+
26+
# Dependency directory
27+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
28+
node_modules
29+
30+
# OSX
31+
.DS_Store
32+
33+
# App packaged
34+
release
35+
app/main.prod.js
36+
app/main.prod.js.map
37+
app/renderer.prod.js
38+
app/renderer.prod.js.map
39+
app/style.css
40+
app/style.css.map
41+
dist
42+
dll
43+
main.js
44+
main.js.map
45+
46+
.idea
47+
npm-debug.log.*
48+
.*.dockerfile

.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 = lf
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: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Runtime data
6+
pids
7+
*.pid
8+
*.seed
9+
10+
# Directory for instrumented libs generated by jscoverage/JSCover
11+
lib-cov
12+
13+
# Coverage directory used by tools like istanbul
14+
coverage
15+
16+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
17+
.grunt
18+
19+
# node-waf configuration
20+
.lock-wscript
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
.eslintcache
25+
26+
# Dependency directory
27+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
28+
node_modules
29+
30+
# OSX
31+
.DS_Store
32+
33+
# App packaged
34+
release
35+
app/main.prod.js
36+
app/main.prod.js.map
37+
app/renderer.prod.js
38+
app/renderer.prod.js.map
39+
app/style.css
40+
app/style.css.map
41+
dist
42+
dll
43+
main.js
44+
main.js.map
45+
46+
.idea
47+
npm-debug.log.*
48+
__snapshots__
49+
50+
# Package.json
51+
package.json
52+
.travis.yml
53+
*.css.d.ts
54+
*.sass.d.ts
55+
*.scss.d.ts

.eslintrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
extends: 'erb/typescript',
3+
rules: {
4+
// A temporary hack related to IDE not resolving correct package.json
5+
'import/no-extraneous-dependencies': 'off'
6+
},
7+
settings: {
8+
'import/resolver': {
9+
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
10+
node: {},
11+
webpack: {
12+
config: require.resolve('./configs/webpack.config.eslint.js')
13+
}
14+
}
15+
}
16+
};

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* text eol=lf
2+
*.png binary
3+
*.jpg binary
4+
*.jpeg binary
5+
*.ico binary
6+
*.icns binary

.github/FUNDING.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# These are supported funding model platforms
2+
3+
github: amilajack
4+
patreon: amilajack
5+
open_collective: electron-react-boilerplate-594

.github/ISSUE_TEMPLATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<!--
2+
Is this a bug report?
3+
If so, go back and select the "Bug report" option or your issue WILL be closed.
4+
--!>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
name: Bug report
3+
about: You're having technical issues.
4+
labels: 'bug'
5+
---
6+
7+
<!-- Please use the following issue template or your issue will be closed. -->
8+
9+
<!--- Provide a general summary of the issue in the Title above -->
10+
11+
## Prerequisites
12+
13+
<!-- If the following boxes are not ALL checked, your issue is likely to be closed. -->
14+
15+
- [ ] Using yarn
16+
- [ ] Using node 10.x
17+
- [ ] Using an up-to-date [`master` branch](https://github.com/electron-react-boilerplate/electron-react-boilerplate/tree/master)
18+
- [ ] Using latest version of devtools. See [wiki for howto update](https://github.com/electron-react-boilerplate/electron-react-boilerplate/wiki/DevTools)
19+
- [ ] Link to stacktrace in a Gist (for bugs)
20+
- [ ] For issue in production release, devtools output of `DEBUG_PROD=true yarn build && yarn start`
21+
- [ ] Tried solutions mentioned in [#400](https://github.com/electron-react-boilerplate/electron-react-boilerplate/issues/400)
22+
23+
## Expected Behavior
24+
25+
<!--- If you're describing a bug, tell us what should happen -->
26+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
27+
28+
## Current Behavior
29+
30+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
31+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
32+
33+
## Possible Solution
34+
35+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
36+
<!--- or ideas how to implement the addition or change -->
37+
38+
## Steps to Reproduce (for bugs)
39+
40+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
41+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
42+
43+
1.
44+
45+
2.
46+
47+
3.
48+
49+
4.
50+
51+
## Context
52+
53+
<!--- How has this issue affected you? What are you trying to accomplish? -->
54+
<!--- Did you make any changes to the boilerplate after cloning it? -->
55+
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
56+
57+
## Your Environment
58+
59+
<!--- Include as many relevant details about the environment you experienced the bug in -->
60+
61+
- Node version :
62+
- Version or Branch used :
63+
- Operating System and version :
64+
- Link to your project :
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Feature request
3+
about: You want something added to the boilerplate.
4+
labels: 'enhancement'
5+
---

.github/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
requiredHeaders:
2+
- Prerequisites
3+
- Expected Behavior
4+
- Current Behavior
5+
- Possible Solution
6+
- Your Environment

0 commit comments

Comments
 (0)