Skip to content

Commit 38afb45

Browse files
committed
build(lint): fix eslint glob
1 parent ef44372 commit 38afb45

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "dist/index.js",
66
"scripts": {
77
"ts-node": "ts-node",
8-
"test:lint": "eslint ./src/**/*.ts ./test/**/*.ts --fix",
8+
"test:lint": "eslint './src/**/*.ts' './test/**/*.ts' --fix",
99
"test:run": "ts-node ./test/index.ts",
1010
"test:build": "yarn test:run && tsc -p tsconfig.test.json",
1111
"test:unit": "jest",

src/language/typescript/2.0/serializers/responses-definitions-object.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { combineReader } from '@devexperts/utils/dist/adt/reader.utils';
2-
import { ask } from 'fp-ts/lib/Reader';
31
import { getIOName, getTypeName } from '../../common/utils';
42
import { addPathParts, Ref } from '../../../../utils/ref';
53
import { ResponsesDefinitionsObject } from '../../../../schema/2.0/responses-definitions-object';

src/language/typescript/common/data/__tests__/serialized-type.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
getSerializedDictionaryType,
55
getSerializedObjectType,
66
getSerializedPropertyType,
7-
getSerializedRecursiveType,
87
getSerializedRefType,
98
serializedType,
109
} from '../serialized-type';

0 commit comments

Comments
 (0)