Lint.jl is a tool that uses static analysis to assist in the development process by detecting common bugs and potential issues.
Lint.jl can be installed through the Julia package manager:
Pkg.add("Lint")There are 3 functions you can use to lint your code.
lintpkg("MyPackage")for linting an entire packagelintfile("my_file.jl")for linting a filelintstr("my string")for linting a string
Detailed documentation is available for: