@tinkoff/eslint-config 5.0.1 → 5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/README.md +92 -96
- package/app.js +2 -6
- package/errors/index.js +16 -13
- package/index.js +24 -14
- package/internal/base.js +89 -78
- package/internal/import.js +40 -29
- package/internal/prettier.js +16 -3
- package/internal/promise.js +11 -8
- package/internal/sort-class-members.js +57 -54
- package/internal/test-files.js +14 -16
- package/internal/typescript.js +170 -157
- package/jest.js +18 -17
- package/lib.js +11 -10
- package/package.json +26 -14
- package/test/import/import-happy.test.js +15 -11
- package/test/import/import-unhappy.test.js +15 -11
- package/test/index.test.js +26 -26
|
@@ -1,58 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
plugins: ['sort-class-members'],
|
|
1
|
+
import sortClassMembersPlugin from 'eslint-plugin-sort-class-members';
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
handlers: [
|
|
23
|
-
{ name: '/^on.+$/', type: 'method' },
|
|
24
|
-
{ name: '/^on.+$/', type: 'property' },
|
|
25
|
-
{ name: '/^handle.+$/', type: 'method' },
|
|
26
|
-
{ name: '/^handle.+$/', type: 'property' },
|
|
3
|
+
export default [
|
|
4
|
+
sortClassMembersPlugin.configs['flat/recommended'],
|
|
5
|
+
{
|
|
6
|
+
rules: {
|
|
7
|
+
'sort-class-members/sort-class-members': [
|
|
8
|
+
'error',
|
|
9
|
+
{
|
|
10
|
+
order: [
|
|
11
|
+
'[static-members]',
|
|
12
|
+
'[properties]',
|
|
13
|
+
'[conventional-private-properties]',
|
|
14
|
+
'constructor',
|
|
15
|
+
'[lifecycle]',
|
|
16
|
+
'[handlers]',
|
|
17
|
+
'[methods]',
|
|
18
|
+
'[conventional-private-methods]',
|
|
19
|
+
'[rendering]',
|
|
20
|
+
'[everything-else]',
|
|
27
21
|
],
|
|
28
|
-
|
|
29
|
-
'
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
22
|
+
groups: {
|
|
23
|
+
'static-members': [{ static: true }],
|
|
24
|
+
handlers: [
|
|
25
|
+
{ name: '/^on.+$/', type: 'method' },
|
|
26
|
+
{ name: '/^on.+$/', type: 'property' },
|
|
27
|
+
{ name: '/^handle.+$/', type: 'method' },
|
|
28
|
+
{ name: '/^handle.+$/', type: 'property' },
|
|
29
|
+
],
|
|
30
|
+
lifecycle: [
|
|
31
|
+
'displayName',
|
|
32
|
+
'propTypes',
|
|
33
|
+
'contextTypes',
|
|
34
|
+
'childContextTypes',
|
|
35
|
+
'defaultProps',
|
|
36
|
+
'getDefaultProps',
|
|
37
|
+
'getInitialState',
|
|
38
|
+
'getChildContext',
|
|
39
|
+
'getDerivedStateFromProps',
|
|
40
|
+
'componentWillMount',
|
|
41
|
+
'UNSAFE_componentWillMount',
|
|
42
|
+
'componentDidMount',
|
|
43
|
+
'componentWillReceiveProps',
|
|
44
|
+
'UNSAFE_componentWillReceiveProps',
|
|
45
|
+
'shouldComponentUpdate',
|
|
46
|
+
'componentWillUpdate',
|
|
47
|
+
'UNSAFE_componentWillUpdate',
|
|
48
|
+
'getSnapshotBeforeUpdate',
|
|
49
|
+
'componentDidUpdate',
|
|
50
|
+
'componentDidCatch',
|
|
51
|
+
'componentWillUnmount',
|
|
52
|
+
'componentDidCatch',
|
|
53
|
+
],
|
|
54
|
+
rendering: ['/^render.+$/', 'render'],
|
|
55
|
+
},
|
|
56
|
+
accessorPairPositioning: 'getThenSet',
|
|
53
57
|
},
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
],
|
|
58
|
+
],
|
|
59
|
+
},
|
|
57
60
|
},
|
|
58
|
-
|
|
61
|
+
];
|
package/internal/test-files.js
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
files: ['*.spec.*', '*.test.*', '*.unit.*', '*/__tests__/*'],
|
|
1
|
+
export default [
|
|
2
|
+
{
|
|
3
|
+
files: ['**/*.spec.*', '**/*.test.*', '**/*.unit.*', '**/__tests__/**/*'],
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
},
|
|
5
|
+
rules: {
|
|
6
|
+
'@typescript-eslint/no-empty-function': 'off',
|
|
7
|
+
'max-statements': 'off',
|
|
8
|
+
'max-classes-per-file': 'off',
|
|
9
|
+
'max-nested-callbacks': ['warn', 10],
|
|
10
|
+
'prefer-promise-reject-errors': 'warn',
|
|
11
|
+
'import/no-unresolved': 'off',
|
|
12
|
+
'import/extensions': 'off',
|
|
13
|
+
'@typescript-eslint/no-shadow': 'off',
|
|
16
14
|
},
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
},
|
|
16
|
+
];
|
package/internal/typescript.js
CHANGED
|
@@ -1,163 +1,176 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import tseslint from 'typescript-eslint';
|
|
2
|
+
import tsParser from '@typescript-eslint/parser';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
4
|
+
export default [
|
|
5
|
+
// Turns off base ESLint rules that TypeScript handles better (applies to TS files)
|
|
6
|
+
{
|
|
7
|
+
files: ['**/*.ts', '**/*.tsx'],
|
|
8
|
+
rules: {
|
|
9
|
+
...tseslint.configs.eslintRecommended.rules,
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
// TypeScript-specific configuration
|
|
13
|
+
{
|
|
14
|
+
files: ['**/*.ts', '**/*.tsx'],
|
|
15
|
+
languageOptions: {
|
|
16
|
+
parser: tsParser,
|
|
17
|
+
parserOptions: {
|
|
18
|
+
sourceType: 'module',
|
|
19
|
+
errorOnUnknownASTType: true,
|
|
20
|
+
warnOnUnsupportedTypeScriptVersion: false,
|
|
21
|
+
ecmaVersion: 6,
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
plugins: {
|
|
25
|
+
'@typescript-eslint': tseslint.plugin,
|
|
26
|
+
},
|
|
27
|
+
rules: {
|
|
28
|
+
...tseslint.configs.recommended.rules,
|
|
17
29
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
'
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
'
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
'
|
|
54
|
-
|
|
55
|
-
{
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
fixWith: 'Record<string, any>',
|
|
67
|
-
},
|
|
30
|
+
// swears on cases like constructor(public c: C) {}
|
|
31
|
+
'no-useless-constructor': 'off',
|
|
32
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
|
33
|
+
'no-unused-vars': 'off',
|
|
34
|
+
'@typescript-eslint/no-unused-vars': [
|
|
35
|
+
'warn',
|
|
36
|
+
{
|
|
37
|
+
argsIgnorePattern: '^_',
|
|
38
|
+
varsIgnorePattern: '^_',
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
'class-methods-use-this': 'off',
|
|
42
|
+
'@typescript-eslint/member-ordering': [
|
|
43
|
+
'off',
|
|
44
|
+
{
|
|
45
|
+
default: [
|
|
46
|
+
'public-static-field',
|
|
47
|
+
'protected-static-field',
|
|
48
|
+
'private-static-field',
|
|
49
|
+
'public-static-method',
|
|
50
|
+
'protected-static-method',
|
|
51
|
+
'private-static-method',
|
|
52
|
+
'public-instance-field',
|
|
53
|
+
'protected-instance-field',
|
|
54
|
+
'private-instance-field',
|
|
55
|
+
'constructor',
|
|
56
|
+
'public-instance-method',
|
|
57
|
+
'protected-instance-method',
|
|
58
|
+
'private-instance-method',
|
|
59
|
+
],
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
'@typescript-eslint/no-unsafe-function-type': 'error',
|
|
63
|
+
'@typescript-eslint/no-wrapper-object-types': 'error',
|
|
64
|
+
'@typescript-eslint/no-restricted-types': [
|
|
65
|
+
'error',
|
|
66
|
+
{
|
|
67
|
+
types: {
|
|
68
|
+
String: { message: 'Use string instead', fixWith: 'string' },
|
|
69
|
+
Boolean: { message: 'Use boolean instead', fixWith: 'boolean' },
|
|
70
|
+
Number: { message: 'Use number instead', fixWith: 'number' },
|
|
71
|
+
Object: {
|
|
72
|
+
message: 'Use Record<string, any> instead',
|
|
73
|
+
fixWith: 'Record<string, any>',
|
|
74
|
+
},
|
|
75
|
+
object: {
|
|
76
|
+
message: 'Use Record<string, any> instead',
|
|
77
|
+
fixWith: 'Record<string, any>',
|
|
68
78
|
},
|
|
69
79
|
},
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
'
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
'
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
'
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
'
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
80
|
+
},
|
|
81
|
+
],
|
|
82
|
+
'@typescript-eslint/no-extraneous-class': [
|
|
83
|
+
'error',
|
|
84
|
+
{
|
|
85
|
+
allowWithDecorator: true,
|
|
86
|
+
allowStaticOnly: true,
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
|
90
|
+
camelcase: 'off',
|
|
91
|
+
'@typescript-eslint/camelcase': 'off',
|
|
92
|
+
'@typescript-eslint/naming-convention': [
|
|
93
|
+
'error',
|
|
94
|
+
{
|
|
95
|
+
selector: 'default',
|
|
96
|
+
format: ['camelCase', 'PascalCase'],
|
|
97
|
+
leadingUnderscore: 'allow',
|
|
98
|
+
trailingUnderscore: 'allow',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
selector: 'variable',
|
|
102
|
+
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
|
|
103
|
+
leadingUnderscore: 'allow',
|
|
104
|
+
trailingUnderscore: 'allow',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
selector: 'typeLike',
|
|
108
|
+
format: ['PascalCase', 'UPPER_CASE'],
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
selector: 'property',
|
|
112
|
+
format: ['camelCase', 'PascalCase'],
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
selector: [
|
|
116
|
+
'classProperty',
|
|
117
|
+
'objectLiteralProperty',
|
|
118
|
+
'typeProperty',
|
|
119
|
+
'classMethod',
|
|
120
|
+
'objectLiteralMethod',
|
|
121
|
+
'typeMethod',
|
|
122
|
+
'accessor',
|
|
123
|
+
'enumMember',
|
|
124
|
+
],
|
|
125
|
+
format: null,
|
|
126
|
+
modifiers: ['requiresQuotes'],
|
|
127
|
+
},
|
|
128
|
+
],
|
|
129
|
+
'@typescript-eslint/ban-ts-comment': 'warn',
|
|
130
|
+
'no-empty-function': 'off',
|
|
131
|
+
'@typescript-eslint/no-empty-function': 'warn',
|
|
132
|
+
// standard no-unused-expressions don't understand optional chaining from ts
|
|
133
|
+
'no-unused-expressions': 'off',
|
|
134
|
+
'@typescript-eslint/no-unused-expressions': [
|
|
135
|
+
'error',
|
|
136
|
+
{
|
|
137
|
+
allowShortCircuit: true,
|
|
138
|
+
allowTernary: true,
|
|
139
|
+
},
|
|
140
|
+
],
|
|
141
|
+
'@typescript-eslint/no-var-requires': 'warn',
|
|
142
|
+
'@typescript-eslint/no-namespace': 'off',
|
|
143
|
+
'no-use-before-define': 'off',
|
|
144
|
+
'@typescript-eslint/no-use-before-define': [
|
|
145
|
+
'error',
|
|
146
|
+
{
|
|
147
|
+
functions: false,
|
|
148
|
+
classes: false,
|
|
149
|
+
variables: true,
|
|
150
|
+
enums: true,
|
|
151
|
+
typedefs: true,
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
155
|
+
'consistent-return': 'off',
|
|
156
|
+
'@typescript-eslint/consistent-type-imports': [
|
|
157
|
+
'warn',
|
|
158
|
+
{
|
|
159
|
+
prefer: 'type-imports',
|
|
160
|
+
disallowTypeAnnotations: true,
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
'no-shadow': 'off',
|
|
164
|
+
'@typescript-eslint/no-shadow': ['warn'],
|
|
165
|
+
// conflict with import type statement, try to merge default and named imports
|
|
166
|
+
// https://github.com/typescript-eslint/typescript-eslint/issues/2545#issuecomment-692842483
|
|
167
|
+
// https://github.com/import-js/eslint-plugin-import/issues/2114
|
|
168
|
+
'import/no-duplicates': 'off',
|
|
169
|
+
},
|
|
170
|
+
settings: {
|
|
171
|
+
'import/parsers': {
|
|
172
|
+
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
|
160
173
|
},
|
|
161
174
|
},
|
|
162
|
-
|
|
163
|
-
|
|
175
|
+
},
|
|
176
|
+
];
|
package/jest.js
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
extends: ['plugin:jest/recommended'],
|
|
1
|
+
import jestPlugin from 'eslint-plugin-jest';
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
'
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
3
|
+
export default [
|
|
4
|
+
jestPlugin.configs['flat/recommended'],
|
|
5
|
+
{
|
|
6
|
+
rules: {
|
|
7
|
+
'jest/expect-expect': [
|
|
8
|
+
'warn',
|
|
9
|
+
{
|
|
10
|
+
assertFunctionNames: [
|
|
11
|
+
'expect',
|
|
12
|
+
// support superagent library
|
|
13
|
+
'request.**.expect',
|
|
14
|
+
],
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
'jest/no-disabled-tests': 'off',
|
|
18
|
+
},
|
|
18
19
|
},
|
|
19
|
-
|
|
20
|
+
];
|
package/lib.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
extends: ['./index'],
|
|
1
|
+
import index from './index.js';
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
export default [
|
|
4
|
+
...index,
|
|
5
|
+
{
|
|
6
|
+
rules: {
|
|
7
|
+
'import/no-dynamic-require': 'off',
|
|
8
|
+
'import/no-deprecated': 'off',
|
|
9
|
+
'@typescript-eslint/no-var-requires': 'off',
|
|
10
|
+
'@typescript-eslint/no-empty-function': 'off',
|
|
11
|
+
},
|
|
11
12
|
},
|
|
12
|
-
|
|
13
|
+
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tinkoff/eslint-config",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "ESLint configs to rule them all",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -9,28 +9,40 @@
|
|
|
9
9
|
"eslint-config"
|
|
10
10
|
],
|
|
11
11
|
"scripts": {},
|
|
12
|
+
"type": "module",
|
|
12
13
|
"main": "index.js",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": "./index.js",
|
|
16
|
+
"./index": "./index.js",
|
|
17
|
+
"./index.js": "./index.js",
|
|
18
|
+
"./app": "./app.js",
|
|
19
|
+
"./app.js": "./app.js",
|
|
20
|
+
"./lib": "./lib.js",
|
|
21
|
+
"./lib.js": "./lib.js",
|
|
22
|
+
"./jest": "./jest.js",
|
|
23
|
+
"./jest.js": "./jest.js"
|
|
24
|
+
},
|
|
13
25
|
"repository": {
|
|
14
26
|
"type": "git",
|
|
15
27
|
"url": "https://github.com/tramvaijs/linters.git"
|
|
16
28
|
},
|
|
17
29
|
"dependencies": {
|
|
18
|
-
"@babel/eslint-parser": "^7.
|
|
30
|
+
"@babel/eslint-parser": "^7.28.5",
|
|
19
31
|
"@babel/eslint-plugin": "^7.19.1",
|
|
20
|
-
"@
|
|
21
|
-
"
|
|
22
|
-
"eslint": "^
|
|
23
|
-
"eslint-config-
|
|
24
|
-
"eslint-config-prettier": "^9.1.0",
|
|
32
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
33
|
+
"eslint": "^9.0.0",
|
|
34
|
+
"eslint-config-airbnb-extended": "^3.1.0",
|
|
35
|
+
"eslint-config-prettier": "^10.1.8",
|
|
25
36
|
"eslint-import-resolver-typescript": "^3.5.5",
|
|
26
37
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
27
|
-
"eslint-plugin-
|
|
28
|
-
"eslint-plugin-
|
|
29
|
-
"eslint-plugin-jest": "^28.0.0",
|
|
38
|
+
"eslint-plugin-import": "^2.32.0",
|
|
39
|
+
"eslint-plugin-jest": "^29.0.0",
|
|
30
40
|
"eslint-plugin-prettier": "^5.1.3",
|
|
31
|
-
"eslint-plugin-promise": "^
|
|
32
|
-
"eslint-plugin-sort-class-members": "^1.
|
|
33
|
-
"
|
|
41
|
+
"eslint-plugin-promise": "^7.2.1",
|
|
42
|
+
"eslint-plugin-sort-class-members": "^1.21.0",
|
|
43
|
+
"globals": "^15.0.0",
|
|
44
|
+
"prettier": "^3.2.5",
|
|
45
|
+
"typescript-eslint": "^8.59.0"
|
|
34
46
|
},
|
|
35
47
|
"publishConfig": {
|
|
36
48
|
"access": "public"
|
|
@@ -38,5 +50,5 @@
|
|
|
38
50
|
"devDependencies": {
|
|
39
51
|
"eslint-formatter-codeframe": "^7.32.1"
|
|
40
52
|
},
|
|
41
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "9fc4e06626008bb3a5e2245b7799566ac29be15c"
|
|
42
54
|
}
|