This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 237623 - Suggestion: Option to turn off file validation css
Summary: Suggestion: Option to turn off file validation css
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: CSS Editor (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal with 2 votes (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-24 13:33 UTC by giorgiobazzo
Modified: 2014-10-06 13:25 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
Log do IDE (394.29 KB, text/plain)
2013-10-24 13:34 UTC, giorgiobazzo
Details
IDE Image (413.38 KB, image/jpeg)
2013-10-24 13:46 UTC, giorgiobazzo
Details

Note You need to log in before you can comment on or make changes to this bug.
Description giorgiobazzo 2013-10-24 13:33:57 UTC
Product Version = NetBeans IDE 7.4 (Build 201310111528)
Operating System = Windows 7 version 6.1 running on amd64
Java; VM; Vendor = 1.7.0_25
Runtime = Java HotSpot(TM) 64-Bit Server VM 23.25-b01

I have noted in many forums, many users (including myself) would like to have an option to disable validation for CSS files. Because sometimes we are forced to use CSS Hacking, and this causes the IDE accuse errors that are actually needed. Red alerts bother who is developing, and there is no way to solve.

In my opinion user, it would be great if this option were implemented.

Thank you for your attention
Giorgio H. Bazzo
Comment 1 giorgiobazzo 2013-10-24 13:34:06 UTC
Created attachment 141521 [details]
Log do IDE
Comment 2 giorgiobazzo 2013-10-24 13:46:01 UTC
Created attachment 141523 [details]
IDE Image
Comment 3 alesak 2013-11-22 16:27:59 UTC
It would be great to have it as some file like .ignorecsserrors file with the list of files to be ignored as we can have it committed in version systems. I have to use some external libraries in our projects and it is very annoying to see mainly IE hacks in those libs causing whole project to show red mark on it.

Also it would be helpful if the error message shows position in line and not only the line number as in case of minified CSS you have very hard time to find where the problem is.

Don't know if it is legal but current parser shows errors for line like this:

background-image: url(aero@2x.png);

but if you put quotes in, it is happy (this is from jquery.icheck plugin)

background-image: url('aero@2x.png');