Skip to content

Commit 5e1aeee

Browse files
committed
initial migration to neon
1 parent 4109ba5 commit 5e1aeee

38 files changed

+2631
-5175
lines changed

.babelrc

Lines changed: 0 additions & 24 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,5 @@ charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
1010

11-
[*.yml]
12-
indent_style = space
13-
indent_size = 2
14-
15-
[*.{json,js,jsx,html,css}]
16-
indent_style = space
17-
indent_size = 2
18-
19-
[.eslintrc]
20-
indent_style = space
21-
indent_size = 2
22-
2311
[*.md]
2412
trim_trailing_whitespace = false

.eslintrc

Lines changed: 0 additions & 84 deletions
This file was deleted.

.flowconfig

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/ISSUE_TEMPLATE.md

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

.github/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pr
8+
- discussion
9+
- e2e
10+
- enhancement
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,7 @@ release
5353

5454
# Editor
5555
.idea
56+
57+
target
58+
artifacts.json
59+
index.node

.travis.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,9 @@
1-
sudo: false
2-
3-
os:
4-
- linux
5-
- osx
6-
71
language: node_js
82

93
node_js:
10-
- 6
11-
- 4
12-
13-
cache:
14-
directories:
15-
- node_modules
4+
- node
165

17-
install:
18-
- npm i -g npm@latest
19-
- npm install
6+
cache: yarn
207

21-
notifications:
22-
email: false
8+
before_install:
9+
- npm i -g yarn@latest

CONTRIBUTING.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)