Gavin Davies
Gavin Davies
I'm also struggling with this issue, anyone got a fix? What I've been doing is using `nodemon` to kick of my tests when something changes, rather than using `grunt watch`,...
I solved this problem by downgrading to Phantom 1.9.8, seemed to work OK once I'd done this
Hi, If you download the source, and make the following change, it works on Windows. You need the NetBeans Plugin Development plugin installed in your NetBeans to build the project...
Sure, we've posted a compiled version on our product blog: http://www.amaxus.com/cms-blog/coding-standards-netbeans-php-codesniffer. We supply this with no guarantees, just as is - hope it helps you!
I haven't recompiled the hack for NB7, sorry, perhaps the API is different? I'll take a look if I get a chance
This issue was fixed here: https://github.com/beberlei/netbeans-php-enhancements/commit/a28933da5567c70887eb6f6169ebf849726d7b08 I've done a build against Netbeans 7, seems to work for me. Although, at my company we use our own coding standard, would be...
As stated in #412, I was able to fix this by editing `/etc/default/jenkins` and adding the parameters as per #408. On CentOs the file to edit would be `/etc/sysconfig/jenkins`. ```...
I had this problem with code like the above: ``` target_group_arn = "${lookup(var.lb_target_groups, "https.arn")}" target_id = "${aws_instance.ghe-server.id}" ``` I switched target_id to use an arn instead and it worked ```...
@cristianurbano I managed to get this working with the following .jscsrc: ``` javascript { "preset": "google", "maximumLineLength": 120, "disallowMultipleVarDecl": false, "jsDoc": { "checkAnnotations": { "preset": "jsdoc3", "extra": { "ngdoc": "some",...