Skip to content

Commit 379e876

Browse files
API updates (MrRefactoring#242)
* API updates * api updates * build fix
1 parent c0f0d2b commit 379e876

17 files changed

+912
-1106
lines changed

.eslintrc

+6-8
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

+1-1
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

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Jira.js changelog
22

3+
### 2.15.15
4+
5+
- Version 2, 3:
6+
- `id`, `projectId`, `onlyDefault` properties added to `getNotificationSchemes` method of `IssueNotificationSchemes` API.
7+
- `replaceWith` property added to `deletePriority` method of `IssuePriorities` API.
8+
39
### 2.15.14
410

511
- Version 2, 3:

0 commit comments

Comments
 (0)