Skip to content

Commit 8d9effa

Browse files
committed
Eslint added
1 parent 7bfb523 commit 8d9effa

14 files changed

+1804
-813
lines changed

.eslintrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"env": {
3+
"commonjs": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": [
8+
"airbnb-base"
9+
],
10+
"globals": {
11+
"Atomics": "readonly",
12+
"SharedArrayBuffer": "readonly"
13+
},
14+
"parserOptions": {
15+
"ecmaVersion": 2018
16+
},
17+
"rules": {
18+
"no-await-in-loop": "off"
19+
}
20+
}

.github/CONTRIBUTING.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Contributing to Chess-Image-Generator
2+
3+
## Did you find a bug?
4+
5+
- [Open a new issue](https://github.com/andyruwruw/chess-image-generator/issues/new/choose) if it's not already reported under [issues](https://github.com/andyruwruw/chess-image-generator/issues).
6+
7+
- Be sure to add a clear title and description, giving as much information as possible to reproduce your issue.
8+
9+
## Did you write a patch that fixes a bug?
10+
11+
- Open a new Github pull request
12+
13+
- Ensure the PR description clearly describes the problem and solution.
14+
15+
- Bump the package.json up a version! Example: 1.0.11 => 1.0.12
16+
17+
- If I've disappeared and don't review, email me at [[email protected]]([email protected])
18+
19+
## Want to help maintain the repo?
20+
21+
- Send me an email!

.github/issue_template.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#### chess-image-generator version:
2+
3+
## Steps to reproduce
4+
5+
## Expected behavior
6+
7+
## Actual behavior

.github/pull_request_template.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Summary
2+
3+
## Other Information

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
node_modules
2-
3-
__test__/node_modules
1+
node_modules

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.github
2+
3+
.eslintrc.json
4+
5+
documentation

0 commit comments

Comments
 (0)