Skip to content

Commit 84704b5

Browse files
committed
feat(connection): added option "forceNewConnection" for connection creation
1 parent c1ed695 commit 84704b5

26 files changed

+1160
-1478
lines changed

.eslintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
/tsconfig.json
1010
/tslint.json
1111
/examples/
12-
/commitlint.config.js
1312
/.husky/
1413
/test/
1514
/src/test/
@@ -18,3 +17,5 @@
1817
/temp/
1918
/*.sh
2019
/html/
20+
/utils/
21+
/*.config.js

CHANGES.md

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

3+
## v0.2.4
4+
5+
- feat(connection): added option `forceNewConnection` for connection creation.
6+
37
## v0.2.3
48

59
- fix(connection): added default write-callback in case of missing uncaught exception.

eslint.config.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// eslint.config.js
2+
const LitertEslintRules = require('@litert/eslint-plugin-rules');
3+
4+
module.exports = [
5+
...LitertEslintRules.configs.typescript,
6+
{
7+
plugins: {
8+
'@litert/rules': LitertEslintRules,
9+
},
10+
files: [
11+
'src/lib/**/*.ts',
12+
],
13+
languageOptions: {
14+
parserOptions: {
15+
project: 'tsconfig.json',
16+
tsconfigRootDir: __dirname,
17+
},
18+
}
19+
}
20+
];

0 commit comments

Comments
 (0)