Lint.jl icon indicating copy to clipboard operation
Lint.jl copied to clipboard

A lint tool for Julia code

Results 50 Lint.jl issues
Sort by recently updated
recently updated
newest added

I suggest a warning for (absolute value of) integer literals larger than: ``` julia> floor(Int, cbrt(typemax(Int))) 2097152 ``` because of (and suggest to use floats): https://discourse.julialang.org/t/the-speed-of-light-is-an-integer-why-should-we-care/40108

It fixes the error that happened because of the old Travis script. Now only the runtests should be updated.

Only positional arguments are currently checked. It might also be worth adding an extra stern warning for unused keyword argument slurps, because they can cause silent failures on misspelled keyword...

Good afternoon. I'm trying to install the linter package by running: ``` _ _ _(_)_ | Documentation: https://docs.julialang.org (_) | (_) (_) | _ _ _| |_ __ _ |...

When I try to install Lint I get the following error. (v1.3) pkg> add Lint.jl ERROR: The following package names could not be resolved: * Lint (not found in project,...

`lintfile` and `lintpkg` fail to parse code which compiles correctly, with a result of `E111` So far, it has failed on all files I've tried. Julia 1.3.0 on Ubuntu 18.04

does the version 1.0.1 fit in it?

If we want to use any function that is exported by other packages, we get this error. For example: ```julia using LanguageServer LanguageServerInstance(stdin, stdout, true, named_pipe, "", Dict()) ``` Gives:...

https://github.com/JuliaLang/julia/issues/5789 Probably warrants a warning.

enhancement

I found that current implementation of macros checking is not working. doc.jl-test generates an error: ```julia s = """ @doc "this is a test" f() = 0 """ msgs =...