Skip to content

Commit

Permalink
Fix missed lints
Browse files Browse the repository at this point in the history
  • Loading branch information
DvvCz committed Aug 23, 2023
1 parent 34691e3 commit 62b9c84
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ramattra-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ program
.description("Parses a given source file into an AST")
.argument("<input-file>")
.argument("[output-file]")
.action(async (input, output, opts) => {
.action(async (input, output, _opts) => {
try {
const src = await fs.readFile(input);
try {
Expand All @@ -33,7 +33,7 @@ program
.description("Compiles a Ramattra script to a workshop script.")
.argument("<input-file>")
.argument("[output-file]")
.action(async (input, output, opts) => {
.action(async (input, output, _opts) => {
try {
const src = await fs.readFile(input);
try {
Expand Down
6 changes: 6 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,11 @@
{
"path": "packages/ramattra-playground"
},
{
"path": "packages/ramattra-language-server"
},
{
"path": "packages/ramattra-vscode"
},
]
}

0 comments on commit 62b9c84

Please sign in to comment.