Skip to content

Commit 27b28ff

Browse files
committed
chore: change type to module
1 parent 1798538 commit 27b28ff

9 files changed

Lines changed: 774 additions & 1204 deletions

File tree

.eslintrc.js renamed to .eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ module.exports = {
1313
'plugin:jest/all',
1414
'plugin:jest-formatting/strict',
1515
'plugin:eslint-comments/recommended',
16-
'prettier',
1716
],
1817
plugins: ['eslint-comments', 'simple-import-sort', 'jest', 'jest-formatting'],
1918
rules: {
@@ -26,5 +25,6 @@ module.exports = {
2625
'simple-import-sort/exports': 'error',
2726
'jest/prefer-expect-assertions': 'off',
2827
'jest/require-hook': 'off',
28+
'jest/max-expects': 'warn',
2929
},
3030
};
File renamed without changes.

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
The MIT License (MIT)
22

3+
Copyright (c) 2023 Jakub Rożek
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+
23+
24+
The MIT License (MIT)
25+
326
Copyright (c) 2022 Kong (https://www.konghq.com)
427

528
Permission is hereby granted, free of charge, to any person obtaining a copy

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @type { import('@jest/types').Config.InitialOptions } */
2-
module.exports = {
2+
export default {
33
collectCoverage: false,
44
injectGlobals: false,
55
modulePathIgnorePatterns: ['<rootDir>/dist'],

0 commit comments

Comments
 (0)