Re: [elm-discuss] Elm static source analysis

2016-12-17 Thread Nick Hollon
The elm compiler has a --warn flag that will check a few things. Importing 
unused modules, functions that are missing type signatures. 

It might not be exactly what you're looking for, but useful to know about :)

> On Dec 17, 2016, at 9:01 AM, Zachary Kessin  wrote:
> 
> I'm just wondering, what do you expect to find with a static source analysis 
> tool in elm? I would think that the type checker would find most issues, and 
> elm-format many of the others
> 
> zach
> 
>> On Fri, Dec 16, 2016 at 7:24 PM, Noah Hall  wrote:
>> I'm working on a linter, but right now, elm-format is your best bet
>> for maintaining code format. We use this with the `--validate` flag to
>> ensure that all checked in code matches elm-format.
>> 
>> On Fri, Dec 16, 2016 at 5:58 PM, Gian Giacomo Ermacora
>>  wrote:
>> > Hello everybody,
>> >
>> > my team and I are working on a complex project using Elm (today it was
>> > upgraded to version 0.18).
>> > Usually we run static source analysis using SonarQube and I am wondering if
>> > there is some way or an existing plugin for that tool to support the Elm
>> > source code
>> >
>> > Any suggestions? I can also accept to use another tool for the static
>> > analysis, it is not a problem, the required scenario is that Jenkins must 
>> > be
>> > able to call this external tool that must do every night its task
>> >
>> > Thank you everybody in advance for suggestions and for this space.
>> >
>> > My best regards,
>> >
>> > Gian.
>> >
>> > --
>> > You received this message because you are subscribed to the Google Groups
>> > "Elm Discuss" group.
>> > To unsubscribe from this group and stop receiving emails from it, send an
>> > email to elm-discuss+unsubscr...@googlegroups.com.
>> > For more options, visit https://groups.google.com/d/optout.
>> 
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Elm Discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to elm-discuss+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
> 
> 
> 
> -- 
> Zach Kessin
> SquareTarget
> Twitter: @zkessin
> Skype: zachkessin
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Elm Discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to elm-discuss+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elm-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [elm-discuss] Elm static source analysis

2016-12-17 Thread Zachary Kessin
I'm just wondering, what do you expect to find with a static source
analysis tool in elm? I would think that the type checker would find most
issues, and elm-format many of the others

zach

On Fri, Dec 16, 2016 at 7:24 PM, Noah Hall  wrote:

> I'm working on a linter, but right now, elm-format is your best bet
> for maintaining code format. We use this with the `--validate` flag to
> ensure that all checked in code matches elm-format.
>
> On Fri, Dec 16, 2016 at 5:58 PM, Gian Giacomo Ermacora
>  wrote:
> > Hello everybody,
> >
> > my team and I are working on a complex project using Elm (today it was
> > upgraded to version 0.18).
> > Usually we run static source analysis using SonarQube and I am wondering
> if
> > there is some way or an existing plugin for that tool to support the Elm
> > source code
> >
> > Any suggestions? I can also accept to use another tool for the static
> > analysis, it is not a problem, the required scenario is that Jenkins
> must be
> > able to call this external tool that must do every night its task
> >
> > Thank you everybody in advance for suggestions and for this space.
> >
> > My best regards,
> >
> > Gian.
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Elm Discuss" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> > email to elm-discuss+unsubscr...@googlegroups.com.
> > For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Elm Discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elm-discuss+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Zach Kessin
SquareTarget 
Twitter: @zkessin 
Skype: zachkessin

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elm-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [elm-discuss] Elm static source analysis

2016-12-16 Thread Noah Hall
I'm working on a linter, but right now, elm-format is your best bet
for maintaining code format. We use this with the `--validate` flag to
ensure that all checked in code matches elm-format.

On Fri, Dec 16, 2016 at 5:58 PM, Gian Giacomo Ermacora
 wrote:
> Hello everybody,
>
> my team and I are working on a complex project using Elm (today it was
> upgraded to version 0.18).
> Usually we run static source analysis using SonarQube and I am wondering if
> there is some way or an existing plugin for that tool to support the Elm
> source code
>
> Any suggestions? I can also accept to use another tool for the static
> analysis, it is not a problem, the required scenario is that Jenkins must be
> able to call this external tool that must do every night its task
>
> Thank you everybody in advance for suggestions and for this space.
>
> My best regards,
>
> Gian.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Elm Discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elm-discuss+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elm-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[elm-discuss] Elm static source analysis

2016-12-16 Thread Gian Giacomo Ermacora
Hello everybody,

my team and I are working on a complex project using Elm (today it was 
upgraded to version 0.18).
Usually we run static source analysis using SonarQube and I am wondering if 
there is some way or an existing plugin for that tool to support the Elm 
source code

Any suggestions? I can also accept to use another tool for the static 
analysis, it is not a problem, the required scenario is that Jenkins must 
be able to call this external tool that must do every night its task

Thank you everybody in advance for suggestions and for this space.

My best regards,

Gian. 

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elm-discuss+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.