Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No command 'lint' found

I want to generate lint report for my project. So on my Ubuntu terminal I gave the command lint my_prj_path but I'm getting below error,

No command 'lint' found, did you mean:
Command 'link' from package 'coreutils' (main)
Command 'jlint' from package 'jlint' (universe)
Command 'hlint' from package 'hlint' (universe)
Command 'line' from package 'util-linux' (main)
Command 'tint' from package 'tint' (universe)
Command 'dlint' from package 'dlint' (universe)
lint: command not found

May be its very basic question, but I can't find a solution. Please help. Thanks in advance.

like image 206
Shirish Herwade Avatar asked Dec 19 '25 03:12

Shirish Herwade


1 Answers

lint is available into /sdk/tools/. So you need to go to directory or add relative path before lint command, like

SDK_PATH/sdk/tools/lint project_path
like image 109
Pankaj Kumar Avatar answered Dec 21 '25 17:12

Pankaj Kumar