Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is this repository still actively maintained? #67

Open
ataraxie opened this issue Mar 3, 2017 · 6 comments
Open

Is this repository still actively maintained? #67

ataraxie opened this issue Mar 3, 2017 · 6 comments

Comments

@ataraxie
Copy link

ataraxie commented Mar 3, 2017

I just added it to my Maven project, but I discovered that the last supported JSHint Version is 2.5.6 and the last contribution was 2 years ago. Is this project still alive?

@friedbrice
Copy link

Evidently, we're using various version 0.0.x in production. I don't see where we're using 1.6.1, if at all. The original primary author has moved on to management, so I doubt anything new is on the horizon for this project. Sorry :-/

@bvarner
Copy link

bvarner commented Apr 12, 2017

I've had a Pull Request open for about a year and a half, with feedback from other devs that it was helpful. I'm guessing this is well and truly dust-binned.

Sadly.

It wouldn't take a lot of care and feeding to update, would it? @friedbrice Anyone have thoughts on a transition plan to get a new maintainer?

@friedbrice
Copy link

friedbrice commented Apr 18, 2017

I'll ask around about finding a new maintainer, @bvarner

@spyhunter99
Copy link

@cjdev ping. i'll volunteer. Or fork it, merge the pr's and publish a release.

@paulrutter
Copy link

For future reference; i would opt to leave jshint and go for the leading eslint.
Since there is no proper maven plugin, one can use the exec-maven-plugin to run it yourselves from maven.

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.2.1</version>

                <configuration>
                <executable>node</executable>
                <workingDirectory>
                    target/${targetDir}
                </workingDirectory>
            <arguments>
                    <argument>./node_modules/eslint/bin/eslint</argument>
                    <argument>./**/*.js</argument>
                </arguments>
                </configuration>
                <executions>
                    <execution>
                        <id>eslint</id>
                        <phase>process-classes</phase>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

In your project, make sure "eslint" and "eslint-cli" are installed in the directory you're trying to run it from. And, of course, nodejs needs to be installed.
Although not a fix for this project, it provides your JS linting issues with an alternative that is being updated quite often.

@delanym
Copy link

delanym commented Oct 22, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants