Skip to content

Commit

Permalink
fix: lint issues from eslint:recommended
Browse files Browse the repository at this point in the history
  • Loading branch information
Avivbens committed Jan 2, 2024
1 parent f36904f commit ccb2b6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ module.exports = {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/consistent-type-imports': 'error',
'no-unused-vars': 'off',
'no-constant-condition': 'off',
'no-useless-escape': 'off',
'prettier/prettier': [
'error',
{
Expand Down
1 change: 1 addition & 0 deletions src/commands/init-script/init-script.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export class InitScriptCommand extends CommandRunner {

const script = hasPermissions ? INIT_DYNAMIC_SCRIPT : OPEN_TERMINAL
console.log(script)
// eslint-disable-next-line no-empty
} catch (error) {}
}
}

0 comments on commit ccb2b6a

Please sign in to comment.