Skip to content
Open
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
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"es6": true,
"jest": true,
"node": true
},
"extends": ["airbnb-base", "prettier"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"import/prefer-default-export": 0,
"class-methods-use-this": 0
}
}
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
7 changes: 7 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"line-length": false,
"first-line-heading": false,
"no-trailing-punctuation": false,
"no-inline-html": false,
"no-duplicate-header": false
}
1 change: 1 addition & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist/
package.json
package-lock.json
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [4.0.0](https://github.com/nlm-pro/spreadsheet-sync/compare/v3.0.0...v4.0.0) (2022-03-20)

### Bug Fixes

- ambiguous field name ([a9a999c](https://github.com/nlm-pro/spreadsheet-sync/commit/a9a999ca3c2b5845882ddbf737fb70994d42bc4d))
- broken distrib ([d4b28bc](https://github.com/nlm-pro/spreadsheet-sync/commit/d4b28bc68b0005f9943af89fd52d800b01492163))
- missing documentation ([e6382a9](https://github.com/nlm-pro/spreadsheet-sync/commit/e6382a912dbbc9f21541b0f7488dcf335889f32b))

## [3.0.0](https://github.com/nlm-pro/spreadsheet-sync/compare/v2.0.0...v3.0.0) (2022-03-20)

> Fork from [Lityx](https://github.com/Lityx/github-project-issue-to-sheets).

### Features

- forking the project ([b43633b](https://github.com/nlm-pro/spreadsheet-sync/commit/86b18f9d499433a345c4d8b1777d6c30d8cbec3d))
- add modes option ([Lityx - 975157c](https://github.com/Lityx/github-project-issue-to-sheets/commit/975157cf355e59d3cdc1ee12546b38744e6a10fc))
- private repo support ([Lityx - 4cfe7ad](https://github.com/Lityx/github-project-issue-to-sheets/commit/4cfe7adc38271fd26269456a274271fc9d069601))

### Bug fixes

- fix condition ([Lityx - 8766148](https://github.com/Lityx/github-project-issue-to-sheets/commit/87661485dfba2eb6da3ca8e012b181841774a419))
- fix pagination ([Lityx - 534f99b](https://github.com/Lityx/github-project-issue-to-sheets/commit/534f99b071f67cc1342fe9904f8b4c88c8c5e061))

## [2.0.0](https://github.com/ViRGiL175/github-project-issue-to-sheets/releases/tag/v2.0.0) (2020-11-08)

> Update by ViRGiL175

Milestones Support

## [1.0.0](https://github.com/ViRGiL175/github-project-issue-to-sheets/releases/tag/v1.0.0) (2020-10-25)

> Initial release by ViRGiL175

- Simple Issues and Pull Request import to Google Sheets working
- README with documentation added
Loading