1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-04 03:10:06 +00:00

chore(*): split lint module into smaller submodules, added tests

This commit is contained in:
Krishna Acondy
2021-03-31 08:32:42 +01:00
parent a8ca534b0b
commit c0d27fa254
16 changed files with 472 additions and 298 deletions

6
src/types/Process.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare namespace NodeJS {
export interface Process {
projectDir: string
currentDir: string
}
}