javascript - Jslint "Line breaking error" - Stack Overflow

JSLint validation of this snippet1: function foo() {}2: 3: foo(14: );5: 6: foo(7: );gives this er

JSLint validation of this snippet

1: function foo() {}
2: 
3: foo(1
4: );
5: 
6: foo(
7: );

gives this error:

Error:

Problem at line 3 character 5: Line breaking error ')'.

foo(1

Is this a JSLint bug?

JSLint validation of this snippet

1: function foo() {}
2: 
3: foo(1
4: );
5: 
6: foo(
7: );

gives this error:

Error:

Problem at line 3 character 5: Line breaking error ')'.

foo(1

Is this a JSLint bug?

Share edited Feb 18, 2009 at 23:35 Rob Kennedy 163k23 gold badges285 silver badges478 bronze badges asked Feb 18, 2009 at 22:55 alex2k8alex2k8 43.2k60 gold badges172 silver badges224 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

It's not a bug. JSLint does more than syntax checking: It enforces certain coding conventions. If you revalidate with the "Tolerate sloppy line breaking" option turned on, you won't get an error.

From the JSLint Documentation:

Line Breaking

As a further defense against the semicolon insertion mechanism, JSLint expects long statements to be broken only after one of these punctuation characters or operators:

, . ; : { } ( [ = < > ? ! + - * / % ~ ^ | & == != <= >= += -= *= /= %= ^= |= &= << >> || && === !== <<= >>= >>> >>>=

JSLint does not expect to see a long statement broken after an identifier, a string, a number, closer, or a suffix operator:

) ] ++ --

JSLint allows you to turn on the Tolerate sloppy line breaking (laxbreak) option.

Semicolon insertion can mask copy/paste errors. If you always break lines after operators, then JSLint can do better at finding them.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743693170a4491304.html

相关推荐

  • javascript - Jslint &quot;Line breaking error&quot; - Stack Overflow

    JSLint validation of this snippet1: function foo() {}2: 3: foo(14: );5: 6: foo(7: );gives this er

    19小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信