@tsslint/core 0.0.6 → 0.0.7
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/index.d.ts +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -2,6 +2,6 @@ import type { Config, ProjectContext } from '@tsslint/config';
|
|
|
2
2
|
import type * as ts from 'typescript/lib/tsserverlibrary.js';
|
|
3
3
|
export type Linter = ReturnType<typeof createLinter>;
|
|
4
4
|
export declare function createLinter(ctx: ProjectContext, config: Config, withStack: boolean): {
|
|
5
|
-
lint(fileName: string): ts.
|
|
5
|
+
lint(fileName: string): ts.DiagnosticWithLocation[];
|
|
6
6
|
getCodeFixes(fileName: string, start: number, end: number, diagnostics?: ts.Diagnostic[] | undefined): ts.CodeFixAction[];
|
|
7
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsslint/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"**/*.js",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"source-map-support": "^0.5.19"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@tsslint/config": "0.0.
|
|
19
|
+
"@tsslint/config": "0.0.7"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "ed1086b1f11469e0a9d6a14199c7e027eb28b488"
|
|
22
22
|
}
|