Skip to content

Commit 3712198

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents b8ef090 + a6d96db commit 3712198

21 files changed

+945
-1146
lines changed

.eslintrc

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,23 @@
1010
},
1111
"plugins": [
1212
"import"
13-
// "sort-exports"
1413
],
1514
"env": {
1615
"node": true,
1716
"browser": true
1817
},
1918
"rules": {
20-
"arrow-parens": ["error", "as-needed"],
2119
"@typescript-eslint/lines-between-class-members": "off",
22-
"max-len": "off",
20+
"arrow-parens": ["error", "as-needed"],
2321
"class-methods-use-this": "off",
24-
"import/prefer-default-export": "off",
22+
"eol-last": "error",
2523
"import/no-cycle": "off",
26-
"no-underscore-dangle": "off",
24+
"import/prefer-default-export": "off",
25+
"linebreak-style": ["error", "unix"],
2726
"lines-between-class-members": "off",
27+
"max-len": "off",
2828
"no-trailing-spaces": "error",
29-
"linebreak-style": ["error", "unix"],
30-
"eol-last": "error",
31-
// "sort-exports/sort-exports": ["error", {"sortDir": "asc"}],
29+
"no-underscore-dangle": "off",
3230
"sort-imports": [
3331
"error",
3432
{

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tests
44
coverage
55
.github
66
.idea
7-
example
7+
examples
88

99
.eslintrc
1010
.editorconfig

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Jira.js changelog
22

3+
### 2.15.16
4+
5+
- Version 2, 3:
6+
- `propertyValue` added to `setUserProperty` method of `UserProperties` API. Thanks to [lihongyin](https://github.com/hongyin163) for issue report.
7+
8+
### 2.15.15
9+
10+
- Version 2, 3:
11+
- `id`, `projectId`, `onlyDefault` properties added to `getNotificationSchemes` method of `IssueNotificationSchemes` API.
12+
- `replaceWith` property added to `deletePriority` method of `IssuePriorities` API.
13+
314
### 2.15.14
415

516
- Version 2, 3:

0 commit comments

Comments
 (0)