linter-csslint:: Error while running CSSLint - html

I am newbie in web development. I have installed atom and was working on project using HTML and CSS. Atom was working absolutely fine with HTML code however when i tried to integrate external css file with HTML then it gives the following error. Can anybody please help. the error is as follows:
linter-csslint:: Error while running CSSLint!
'"node"' is not recognized as an internal or external command,
operable program or batch file.

Try installing NodeJS seems some others that use Atom with CSSLint also had this issue: AtomLinter/linter-csslint
I'm not sure how important CSSLint is to this project but if you don't need it try and removing it from your package list before you try downloading anything (if its a bare bones project)

Related

How to fix errors in all angular html files in eclipse

Hello guys, I am new in angular and just created a project in eclipse. At first all the .ts files were opening as a an audio file but when I install angular plugin, the .ts files opened normal. However, the HTML files became as in the image above. Could someone help me on what to do in other to get rid of the errors.
The error appears in all html files, but the app runs.
I installed Angular IDE by CodeMix and the errors were gone, this could be achieved using "Install New Software".

Cannot generate HTML file from cppcheck.xml on linux

I am trying to generate HTML file from the cppcheck.xml file. But i keep getting the following error : -bash: htmlreport/cppcheck-htmlreport: No such file or directory
I have installed the cppcheck and the htmlreport/cppcheck-htmlreport is also added to /usr/bin. I dont know what to do next. I cant find anythong related to this error on the internet.
I have to publish the cppcheck.xml on the jenkins UI. But the job i have is a multibranch pipeline and it doesnt support the cppcheck plugin. So I am left with no other option but to convert the cppcheck.xml to html and then publish that on the jenkins. This is also now getting error. Please tell how i should proceed further.

Trouble installing PHP Code Sniffer

I'm attempting to install PHP Code Sniffer for PhpStorm, but have been unable to get it to work. I've been following the steps here: https://confluence.jetbrains.com/display/PhpStorm/PHP+Code+Sniffer+in+PhpStorm
I added PHP Code Sniffer as a Composer dependency, and it now appears in the project directory. I then went to the code sniffer settings page, where I entered the path to the PHPCS.bat file. When I click Validate, I get an error message saying "Can not run PHP Code Sniffer".
Have I missed a step or is there a log somewhere with more information on what is not working?
I solved the same problem by editing the phpcs.bat file and replacing the paths:
PHPBIN=#php_bin#
with
PHPBIN=path\to\php.exe
and
"%PHPBIN%" "#bin_dir#\phpcs" %*
with
"%PHPBIN%" "path\to\phpcs" %*
I had the same issue, I solve it adding the php path to the PATH environment variables on windows. Because when it runs the scripts needs to run php and if it not present on the global path of windows will fail.

Work with HTML and CSS in IntelliJ UE

I'm working on an application with a builtin jetty web-server and velocity templates.
While the application is running and I change some HTML statements inside Eclipse IDE, save the file and refresh the HTML page in my browser - I instantly see my changes.
However, with IntelliJ this is not possible. I always have to recompile my whole application to see my changes in the browser.
I've tried the LiveEdit plugin with a JS debug session and the JetBrains Chrome browser extension. Though the LiveEdit plugin is connected to the IDE I get always an "CONNECTION REFUSED" error. I've also tried some troubleshooting (changing IDE port etc.) - with the same error as result. I think there are some issues with the unrendered velocity templates here.
So my question is: Is there a way to have the same easy behavior while working with CSS and HTML files in IntelliJ like in Eclipse IDE?
Okay, finally got what I wanted. If anybody stumbles over the same issue, here's my solution:
In IntelliJ you have to Make the project or module over the IntelliJ build process to see your HTML and CSS changes in the browser.
To do it a little bit more comfortable you could record a macro in IntelliJ and bind the action to save a project combined with the make process to one shortcut.

Parsed Console Output Error in Hudson

im running Hudson continuous integration for db unit.
when i run the job the console output is displaying the SUCCESS, but then why do the Parsed Console Output keep returning this error:
ERROR:Failed to parse console log :
log-parser plugin ERROR: Cannot parse log: Can't read parsing rules file:
i already installed the parse-log plugin & i already restarted the Hudson..
i installed the plugin using remote PC
any help and suggestion is appreciated. Thanks!
1) Place the Parser Rule File in the JENKINS_HOME location.
2) Configure that log parser console output in the Global COnfiguration settings and Name it.
3) Add this option in the Post Build Actions and Select the Name
ok silly me..
i forgot to configure the global configuration in hudson that link to the parser rule file..
problem solved.
I'm posting this in case anyone else has a specific case of this problem. This issue started when upgrading from 1.509.2 to 1.554.3... I had the parsing rules file in the win\system folder which was a known issue when running Jenkins as a service. Well I guess they fixed it by this version. I moved the parsing rules back into Jenkins Home folder and it worked fine again.