Skip to content

Commit b015ce8

Browse files
committed
fix(command): fixed the return value of command "exists"
1 parent cbde950 commit b015ce8

File tree

6 files changed

+1321
-9
lines changed

6 files changed

+1321
-9
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/commitlint.config.js

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes Logs
22

3+
## v1.2.1
4+
5+
- fix(command): fixed the return value of EXISTS command.
6+
37
## v1.2.0
48

59
- Added following command methods:

commitlint.config.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
module.exports = {
2+
'extends': ['@commitlint/config-conventional'],
3+
'defaultIgnores': false,
4+
'rules': {
5+
'type-enum': [2, 'always', [
6+
'feat',
7+
'fix',
8+
'add',
9+
'test',
10+
'refactor',
11+
'perf',
12+
'style',
13+
'config',
14+
'merge'
15+
]],
16+
'scope-enum': [2, 'always', [
17+
'connection',
18+
'command',
19+
'client',
20+
'pipeline',
21+
'subscriber',
22+
'lint',
23+
'docs',
24+
'branch',
25+
'global'
26+
]],
27+
'scope-empty': [2, 'never'],
28+
'subject-case': [2, 'always', 'lowerCase'],
29+
'subject-min-length': [2, 'always', 5],
30+
'subject-max-length': [2, 'always', 50],
31+
}
32+
};

0 commit comments

Comments
 (0)