Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
env: {
node: true,
es6: true,
jest: true
},
extends: [
"eslint:recommended",
"plugin:prettier/recommended"
],
plugins: [
"@typescript-eslint"
],
parser: "@typescript-eslint/parser",
parserOptions: {
"sourceType": "module",
"project": "./tsconfig.json",
"ecmaVersion": 2019
},
rules: {
"no-console": 0,
"no-unused-vars": 0,
"no-undef": 0
},
settings: {
node: {
tryExtensions: [".ts", ".tsx", ".js", ".jsx", ".json", ".node"]
}
}
};
6 changes: 6 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Please confirm before creating PR

Let's confirm before creating PR🐱!

- Please give me an easy-to-understand title.
- You have cleared check items written in README.md.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Bug Report
about: Bug Report Template

---

# Summary
[required]

# Steps to Reproduce
[required]

# Environment
[required]

# Problem
[optional]

# Repletion
[optional]
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature
about: New Feature Template

---

# Done
[required]

# Repletion
[optional]
13 changes: 13 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# issueURL
[required]

# Done
[required]

# Summary of Changes

# What you want to see in the reviewer
[optional]

# Repletion
[optional]
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ coverage
src
.gitignore
.git
.travis.yml
jest.config.json
.eslintrc.js
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 1.1.0 - 2019-06-01

- [Updated npm packages](https://github.com/nekonomokochan/aws-lambda-node-logger/issues/35)

# 1.0.0 - 2018-07-08

- [Added SlackNotifier](https://github.com/nekonomokochan/aws-lambda-node-logger/pull/28)
Expand Down
5 changes: 0 additions & 5 deletions ISSUE_TEMPLATE.md

This file was deleted.

5 changes: 0 additions & 5 deletions PULL_REQUEST_TEMPLATE.md

This file was deleted.

Loading