Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

jslint_com · This group has moved to Google Plus.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 586
  • Category: JavaScript
  • Founded: Mar 7, 2008
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1077 - 1108 of 3202   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1077 walfisch_in_the_sea
walfisch_in_... Send Email
Jan 23, 2010
9:54 pm
I do not deserve the credit. He or she who does, lives here: http://www.network-science.de/ascii/ I do love that site. Christian...
1078 Dan McNeil
dwmcneil... Send Email
Jan 23, 2010
10:56 pm
Now that is cool... To think I once wrote such a generator in 6502/10 asm for the C64... How far we've come... ________________________________ From:...
1079 thefangmonster Send Email Jan 25, 2010
3:11 pm
... Hey very nice. I've been using Rhino but I had heard good things about the speed of Spidermonkey. ... Confirmed, at least for Cygwin Ruby :\ it looks...
1080 smparkes@...
smparkes... Send Email
Jan 25, 2010
4:13 pm
... In theory, cygwin shouldn't be too hard. The biggest issue that I'm aware of is the build stuff. The older SpiderMonkey builds were a bit brittle with...
1081 Simon Kenyon Shepard
sks0001010 Send Email
Jan 27, 2010
8:27 pm
Hi, A developer in my team is using the CSS code: z-index:+1; to increment the z-index of an element by one. This fails the JSLint validator, I cannot seem to...
1082 Fatih Piristine
fatihpiristine Send Email
Jan 28, 2010
9:06 am
this should do that element.style.zIndex = element.style.zIndex + 1; Fatih ... From: Simon Kenyon Shepard <simon.shepard@...> Subject: [jslint]...
1083 Dominic Mitchell
happygiraffe... Send Email
Jan 28, 2010
9:33 am
On Wed, Jan 27, 2010 at 8:27 PM, Simon Kenyon Shepard < ... If you look at the CSS grammar <http://www.w3.org/TR/CSS21/grammar.html>, each declaration is: ...
1084 pauanyu Send Email Jan 28, 2010
2:33 pm
I did a little more digging, and here's what the W3C has to say about integers: http://www.w3.org/TR/CSS2/syndata.html#value-def-integer Basically, the + sign...
1085 pauanyu Send Email Jan 28, 2010
2:34 pm
According to the W3C and MDC, z-index is either "auto" or an integer. The integer can be positive or negative, but if it is positive, it does not need the plus...
1086 Aseem
aseem.kishor... Send Email
Jan 28, 2010
4:12 pm
Everyone seems to have missed what Simon said specifically (emphasis mine): "A developer in my team is using the CSS code: z-index:+1; to _increment_ the...
1087 Douglas Crockford
douglascrock... Send Email
Jan 28, 2010
6:03 pm
... Part of JSLint's mission is to save us from confusion. In this instance, JSLint did exactly the right thing....
1088 David Rueter
davidrueter Send Email
Jan 28, 2010
6:35 pm
I noticed that JSLint does not detect a problem with HTML ID attributes that begin with a numeral. I ran into a problem the other day where YUI3 was doing...
1089 Douglas Crockford
douglascrock... Send Email
Jan 29, 2010
5:17 am
... Please try it now....
1090 Dominic Mitchell
happygiraffe... Send Email
Jan 29, 2010
9:31 am
... +1 ! -Dom [Non-text portions of this message have been removed]...
1091 Morgaut Alexandre Lou...
morgaut_a Send Email
Jan 29, 2010
9:44 am
very good point I think this kind of thing deserve an error more than a simple warning ;-) ... [Non-text portions of this message have been removed]...
1092 Kevin
kevint241 Send Email
Jan 29, 2010
11:01 pm
Using JSLint with emacs and flymake-mode to provide near-live code annotation with lint results has been well documented for a while over on EmacsWiki. It's...
1093 iain_dalton Send Email Feb 1, 2010
9:12 pm
In JavaScript: A Survey of the Language, you wrote: !! can be used as a prefix operator, converting its operand to a boolean. but JSLint says: Confusing use of...
1094 Julien Royer
julien_roy Send Email
Feb 1, 2010
9:32 pm
... It doesn't emit this error for the following code: /*global b*/ var a = !!b; Do you have a code snippet illustrating your problem?...
1095 iain_dalton Send Email Feb 1, 2010
9:38 pm
... Sure: var launchIsKeyCode = this.prefs.getBoolPref(this.kbLaunchNames.userIsKeyCode); var charCode = event.charCode; if ((!!charCode) === launchIsKeyCode)...
1096 Douglas Crockford
douglascrock... Send Email
Feb 1, 2010
10:44 pm
... I have to confess, this code confuses me. What is it intending to do? Could it be made clearer?...
1097 Michael Lorton
mlorton Send Email
Feb 2, 2010
2:35 am
It seems pellucid to me. It means "is the truthiness of charCode the same as the actual truth-value of launchIsKeyCode&quot;. In fact, I cannot think of a better...
1099 Jordan
ljharb Send Email
Feb 2, 2010
10:06 am
I don't understand why the logical test can't be: if ((event.charCode && launchIsKeyCode) || (!event.charCode && !launchIsKeyCode)) { You don't need to force a...
1101 dadraqsta Send Email Feb 4, 2010
11:42 am
I've been running a JSlint checking Web service for a year or two over here: http://jslint.webvm.net/mylintrun.js However when I use it, I always get the last...
1102 Cheney, Edward A SSG ...
sandyhead25 Send Email
Feb 4, 2010
1:29 pm
dadraqsta, I show severly errors. In order to read it a bit easier I ran it through my Pretty Diff tool to first minify it to remove the comments and then...
1103 Julien Royer
julien_roy Send Email
Feb 4, 2010
1:35 pm
Hi, Why does JSLint use the following regexp to detect names beginning with a capital letter (newcap option)? /^[A-Z]([A-Z0-9_$]*[a-z][A-Za-z0-9_$]*)?$/ It...
1104 Mark Volkmann
mark_volkmann Send Email
Feb 6, 2010
1:49 pm
I see there is an option to allow HTML to contain a fragment instead of a full document. I know how to specify JSLint options in a comment at the top of a...
1105 Mark Volkmann
mark_volkmann Send Email
Feb 6, 2010
1:51 pm
Is there a way to get JSLint to approve of a <!DOCTYPE ...> at the top of a .html file that specifies the document is XHTML?...
1106 Cheney, Edward A SSG ...
sandyhead25 Send Email
Feb 7, 2010
2:25 pm
Mark, The standard XHTML 1.0 Strict and XHTML 1.1 doctypes both work for me in the JSLint tool, however the tool inappropriately outputs a missing '>' error...
1107 Cheney, Edward A SSG ...
sandyhead25 Send Email
Feb 7, 2010
2:26 pm
Correction to XHTML 1.1 doctype: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">...
1108 Cheney, Edward A SSG ...
sandyhead25 Send Email
Feb 7, 2010
2:27 pm
Mark, Do you mean JSLint's fragment: true option? Please describe your use case with greater specification when you refer to use at top of a HTML file. Austin...
Messages 1077 - 1108 of 3202   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help