Skip to content

Commit

Permalink
Eslint added
Browse files Browse the repository at this point in the history
  • Loading branch information
andyruwruw committed Sep 28, 2020
1 parent 7bfb523 commit 8d9effa
Show file tree
Hide file tree
Showing 14 changed files with 1,804 additions and 813 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-await-in-loop": "off"
}
}
21 changes: 21 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Contributing to Chess-Image-Generator

## Did you find a bug?

- [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).

- Be sure to add a clear title and description, giving as much information as possible to reproduce your issue.

## Did you write a patch that fixes a bug?

- Open a new Github pull request

- Ensure the PR description clearly describes the problem and solution.

- Bump the package.json up a version! Example: 1.0.11 => 1.0.12

- If I've disappeared and don't review, email me at [[email protected]]([email protected])

## Want to help maintain the repo?

- Send me an email!
7 changes: 7 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#### chess-image-generator version:

## Steps to reproduce

## Expected behavior

## Actual behavior
3 changes: 3 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Summary

## Other Information
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
node_modules

__test__/node_modules
node_modules
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.github

.eslintrc.json

documentation
Loading

0 comments on commit 8d9effa

Please sign in to comment.