Newer
Older
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
* New: Add ability to time individual rules (fixes #1437) (Brandon Mills)
* Fix: single quotes (Nate-Wilkins)
* Docs: Fix broken code fences in key-spacing docs (Brandon Mills)
* Docs: Explain .eslintignore features (fixes #1094) (Brandon Mills)
* Breaking: ignore node_modules by default (fixes #1163) (Brandon Mills)
* Fix: Adds clamping to getSource beforeCount (fixes #1427) (Greg Gianforcaro)
* New: add no-inline-comment rule (fixes #1366) (Greg Cochard)
* Fix: '.md' to '.html' with anchors (fixes #1415) (Nate-Wilkins)
* Build: Filter and sort versions in gensite (fixes #1430) (Brandon Mills)
* Build: Escape period in regex (fixes #1428) (Brandon Mills)
* Revert "Fix: '.md' to '.html' with anchors (fixes #1415)" (Nicholas C. Zakas)
* 0.9.2 (Nicholas C. Zakas)
* New: Add operator-assignment rule (fixes #1420) (Brandon Mills)
v0.9.2 - November 1, 2014
* 0.9.2 (Nicholas C. Zakas)
* Fix: '.md' to '.html' with anchors (fixes #1415) (Nate-Wilkins)
* Fix: Allow line breaks in key-spacing rule (fixes #1407) (Brandon Mills)
* Build: add coveralls integration (fixes #1411) (Mathias Schreck)
* Fix: add severity flag for ignored file warning (fixes #1401) (Mathias Schreck)
* Fix: Keep sinon at ~1.10.3 (fixes #1406) (Brandon Mills)
* Fix: ! negates .eslintignore patterns (fixes #1093) (Brandon Mills)
* Fix: let fs.stat throw if a file does not exist (fixes #1296) (Mathias Schreck)
* Fix: check switch statements in space-before-blocks (fixes #1397) (Mathias Schreck)
* Docs: fix rule name in example configuration (Mathias Schreck)
* Fix: disable colors during test run (fixes #1395) (Mathias Schreck)
* New: add isPathIgnored method to CLIEngine (fixes #1392) (Mathias Schreck)
* Docs: changing eslint to ESLint and add missing backtick (Mathias Schreck)
* Docs: Documents the functionality to load a custom formatter from a file (Adam Baldwin)
* 0.9.1 (Nicholas C. Zakas)
* Update: Option type for mixed tabs and spaces (fixes #1374) (Max Nordlund)
* Fix: Nested occurrences of no-else-return now show multiple reports (fixes #1369) (Jordan Hawker)
v0.9.1 - October 25, 2014
* 0.9.1 (Nicholas C. Zakas)
* Docs: fix link on governance model (azu)
* Fix: plugins without rulesConfig causes crash (fixes #1388) (Mathias Schreck)
* 0.9.0 (Nicholas C. Zakas)
v0.9.0 - October 24, 2014
* 0.9.0 (Nicholas C. Zakas)
* New: Allow reading from STDIN (fixes #368) (Nicholas C. Zakas)
* New: add --quiet option (fixes #905) (Mathias Schreck)
* Update: Add support for plugin default configuration (fixes #1358) (Ilya Volodin)
* Fix: Make sure shebang comment node is removed (fixes #1352) (Nicholas C. Zakas)
* New: Adding in rule for irregular whitespace checking. (fixes #1024) (Jonathan Kingston)
* Fix: space-in-parens should not throw for multiline statements (fixes #1351) (Jary)
* Docs: Explain global vs. local plugins (fixes #1238) (Nicholas C. Zakas)
* Docs: Add docs on Node.js API (fixes #1247) (Nicholas C. Zakas)
* Docs: Add recommended keywords for plugins (fixes #1248) (Nicholas C. Zakas)
* Update: Add CLIEngine#getConfigForFile (fixes #1309) (Nicholas C. Zakas)
* Update: turn on comma-style for project (fixes #1316) (Nicholas C. Zakas)
* Fix: Ensure messages are sorted by line (fixes #1343) (Nicholas C. Zakas)
* Update: Added arraysInObjects and objectsInObjects options to space-in-brackets rule (fixes #1265, fixes #1302) (vegetableman)
* Breaking: Removed comma spacing check from space-infix-ops (fixes #1361) (vegetableman)
* Fix: addressed linting errors (Nicholas C. Zakas)
* Docs: Add Contributor Model (fixes #1341) (Nicholas C. Zakas)
* Docs: Add reference to CLA (Nicholas C. Zakas)
* Build: add version numbers to docs (fixes #1170) (Mathias Schreck)
* Fix: no-fallthrough incorrectly flagged falls through annotations (fixes #1353) (Mathias Schreck)
* Build: separate site publishing form generation (fixes #1356) (Mathias Schreck)
* New: Add key-spacing rule (fixes #1280) (Brandon Mills)
* New: add spaced-line-comment rule (fixes #1345) (Greg Cochard)
* Docs: added more Related Rules sections (fixes #1347) (Delapouite)
* Fix: resolve linting issue in (fixes #1339) (Nicholas C. Zakas)
* New: add space-before-blocks rule (fixes #1277) (Mathias Schreck)
* Docs: Remove moot integration plugins (Sindre Sorhus)
* New: add rule for multiple empty lines (fixes #1254) (Greg Cochard)
* Fix: no-shadow rule should consider function expressions (fixes #1322) (Mathias Schreck)
* Update: remove globals present only in Jasmine plugins (fixes #1326) (Michał Gołębiowski)
* New: added no-multi-spaces rule (fixes #630) (vegetableman)
* New: Added comma-spacing rule (Fixes #628, Fixes #1319) (vegetableman)
* New: add rule for padded blocks (fixes #1278) (Mathias Schreck)
* Docs: fix eqeqeq isNullCheck comment (Denis Sokolov)
* Fix: no-comma-dangle violation in unit test and Makefile.js/lint not checking return codes (fixes #1306) (David Anson)
* Fix: allow comma-last with object properties having line breaks (fixes #1314) (vegetableman)
* New: Added comma-style rule (fixes #1282) (vegetableman)
* Update: add space after function keyword check (fixes #1276) (Mathias Schreck)
* Update: Add missing environments and fix sorting/grouping of rules (fixes #1307, fixes #1308) (David Anson)
* Docs: Fix sorting of rules within each section (David Anson)
* Docs: Correct a few misspelled words (David Anson)
* Docs: Update multiple pages to fix rendering of fenced code blocks (David Anson)
* New: Added no-process-env rule (fixes #657) (vegetableman)
* Fix: add rule ensuring #1258 is fixed by recent rewrite (fixes #1258) (Michael Ficarra)
* Update: split propertyName from singleValue in space-in-brackets (fixes #1253) (Michael Ficarra)
* Update: add "as-needed" option to quote-props rule (fixes #1279) (Michael Ficarra)
* Docs: fixed broken link and changed warning level to error level (vegetableman)
* Docs: Added "the native web" to the list of companies that use ESLint. (Golo Roden)
* Docs: Add BountySource badge to README (Nicholas C. Zakas)
* 0.8.2 (Nicholas C. Zakas)
v0.8.2 - September 20, 2014
* 0.8.2 (Nicholas C. Zakas)
* Docs: Updated contribution guidelines to add accepted/bounty issues descriptions (Nicholas C. Zakas)
* Docs: Update README with links and FAQs (Nicholas C. Zakas)
* Docs: add finally to space-after-keywords documentation (Mathias Schreck)
* New: add ignoreCase option to sort-vars (fixes #1272) (Mathias Schreck)
* Docs: fix typo (Barry Handelman)
* Docs: Fix broken Markdown on configuration page (Nicholas C. Zakas)
* Docs: Fix reference to wrong rule name (Harry Wolff)
* Upgrade: Most dev dependencies (Nicholas C. Zakas)
* Upgrade: shelljs to 0.3.0 (Nicholas C. Zakas)
* Upgrade: doctrine to 0.5.2 (Nicholas C. Zakas)
* Upgrade: esprima to 1.2.2 (Nicholas C. Zakas)
* Upgrade: eslint-tester to latest (Nicholas C. Zakas)
* Fix: Load .eslintrc in directory with $HOME as an ancestor (fixes #1266) (Beau Gunderson)
* Fix: load .eslintrc from HOME (fixes #1262) (Beau Gunderson)
* New: Add sharable rule settings (fixes #1233) (Ilya Volodin)
* Upgrade: upgrade outdated dependencies (fixes #1251) (Mathias Schreck)
* Docs: fix typo in no-ex-assign documentation (Michael Ficarra)
* Docs: add intellij plugin to integrations (ido)
* Docs: Changing NPM to npm (Peter deHaan)
* Fix: strict should check function expressions (fixes #1244) (Brandon Mills)
* Docs: fix vars-on-top documentation (fixes #1234) (Mathias Schreck)
* 0.8.1 (Nicholas C. Zakas)
* Docs: Fixed a typo in brace-style.md (Anton Antonov)
v0.8.1 - September 9, 2014
* 0.8.1 (Nicholas C. Zakas)
* Fix: Ensure exit code is 1 when there's a syntax error (fixes #1239) (Nicholas C. Zakas)
* Docs: fix up vars-on-top documentation (fixes #1234) (Michael Ficarra)
* Fix: vars-on-top directive support (fixes #1235) (Michael Ficarra)
* Fix: Avoid mutating node.range in max-len (fixes #1224) (Brandon Mills)
* Docs: Typo, add missing quotation mark (Ádám Lippai)
* Update: space-in-brackets to allow exceptions (fixes #1142) (Brandyn Bennett)
* 0.8.0 (Nicholas C. Zakas)
v0.8.0 - September 5, 2014
* 0.8.0 (Nicholas C. Zakas)
* Perf-related revert "Fix: Speed up tokens API (refs #1212)" (Nicholas C. Zakas)
* Fix: no-fallthrough: continue affects control flow, too (fixes #1220) (Michael Ficarra)
* Fix: rewrite no-unused-vars rule (refs #1212) (Michael Ficarra)
* Fix: Error when there's a \r in .eslintrc (#1172) (Gyandeep Singh)
* Added rule disallowing reserved words being used as keys (fixes #1144) (Emil Bay)
* Fix: rewrite no-spaced-func rule (refs #1212) (Michael Ficarra)
* Fix: Speed up getScope() (refs #1212) (Brandon Mills)
* Fix: no-extra-strict behavior for named function expressions (fixes #1209) (Mathias Schreck)
* Add Date.UTC to allowed capitalized functions (David Brockman Smoliansky)
* New: Adding 'vars-on-top' rule (fixes #1148) (Gyandeep Singh)
* Fix: Speed up tokens API (refs #1212) (Brandon Mills)
* Docs: document plugin usage (fixes #1117) (Mathias Schreck)
* New: accept plugins from cli (fixes #1113) (Mathias Schreck)
* Docs: fix some typos. (Mathias Schreck)
* New: Load plugins from configs (fixes #1115). (Mathias Schreck)
* Fix: no-unused-expressions better directive detection (fixes #1195) (Michael Ficarra)
* Fix: no-unused-expressions directive support (fixes #1185) (Michael Ficarra)
* Update: Add 'allowSingleLine' option to brace-style (fixes #1089) (John Gozde)
* Docs: Spell checking and one extra closing curly in code example (Juga Paazmaya)
* Fix: mergeConfigs ensures the plugins property exists (fixes #1191). (Mathias Schreck)
* Update: Declare ES6 collections (Map, Set, WeakMap, WeakSet) as built-in globals (fixes #1189) (Michał Gołębiowski)
* New: Adding 'plugin' CLI option (fixes #1112) (Greg)
* Fix: Correct a typo in the error message in tests (Michał Gołębiowski)
* New: Add no-extra-bind rule to flag unnecessary bind calls (fixes #982) (Bence Dányi)
* Fix: Useless bind call in cli-engine (fixes #1181) (Bence Dányi)
* Docs: Updates `amd` description (fixes #1175) (James Whitney)
* New: Adds support for the `jasmine` env (fixes #1176) (James Whitney)
* Fix: for-in support to no-empty-label rule (fixes #1161) (Marc Harter)
* docs: Update link (Mathias Bynens)
* Fix: crash when loading empty eslintrc file (fixes #1164) (Michael Ficarra)
* Fix: no-unused-var should respect compound assignments (fixes #1166) (Michael Ficarra)
* Update: ES3 `ReservedWord`s (fixes #1151) Adds ES3 `ReservedWord`s to the list of keywords in the `dot-notation` rule (fixes #1151) (Emil Bay)
* Update: Update comment parser to read rule slashes (fixes #1116) (Jary)
* New: add no-void rule (fixes #1017). (Mike Sidorov)
* New: Add rules.import() (fixes #1114) (Mathias Schreck)
* New: Make mergeConfigs() merge plugin entries (fixes #1111) (Mathias Schreck)
* Breaking: Change no-global-strict to global-strict and add "always" option (fixes #989) (Brandon Mills)
* Fix: no-unreachable should check top-level statements (fixes #1138) (Brandon Mills)
* Fix: Speed up no-unreachable (fixes #1135) (Brandon Mills)
* New: advanced handle-callback-err configuration (fixes #1124) (Mathias Schreck)
* New: Expose CLIEngine (fixes #1083) (Gyandeep Singh)
* Docs: Add link to new Atom linter (fixes #1125) (Gil Pedersen)
* Fix: space-after-keywords checks finally of TryStatement (fixes #1122) (Michael Ficarra)
* Fix: space-after-keywords checks while of DoWhileStatement (fixes #1120) (Michael Ficarra)
* Fix: space-after-keywords w/ "never" should allow else-if (fixes #1118) (Michael Ficarra)
* Fix: dot-notation rule flags non-keyword reserved words (fixes #1102) (Michael Ficarra)
* Update: Use xml-escape instead of inline helper (Ref #848) (jrajav)
* Update: Added comments support to .eslintignore (fixes #1084) (Vitaly Puzrin)
* Update: enabled 'no-trailing-spaces' rule by default (fixes #1051) (Vitaly Puzrin)
* Breaking: Ignore children of all patterns by adding "/**" (Fixes #1069) (jrajav)
* Fix: skip dot files and ignored dirs on traverse (fixes #1077, related to #814) (Vitaly Puzrin)
* Docs: Added Gruntjs plugin on integrations page (Gyandeep Singh)
* Fix: don't break node offsets if hasbang present (fixes #1078) (Vitaly Puzrin)
* Build: Exclude readme/index from rules Resources generation (Fixes #1072) (jrajav)
* Docs: Change eol-last examples to `<pre>` (Fixes #1068) (jrajav)
* 0.7.4 (Nicholas C. Zakas)
* New: space-in-parens rule (Closes #627) (jrajav)
v0.7.4 - July 10, 2014
* 0.7.4 (Nicholas C. Zakas)
* Docs: Fix 'lintinging' typo and ref links (Tom Vincent)
* Fix: Transform envs option to object in Config (Fixes #1064) (jrajav)
* 0.7.3 (Nicholas C. Zakas)
v0.7.3 - July 9, 2014
* 0.7.3 (Nicholas C. Zakas)
* Update: Address code review comment for strict rule (refs #1011) (Nicholas C. Zakas)
* Docs: Update copyright policy (Nicholas C. Zakas)
* Docs: Update documentation for max-len to include description of second option (fixes #1006) (Nicholas C. Zakas)
* Fix: Avoid double warnings for strict rule (fixes #1011) (Nicholas C. Zakas)
* Fix: Check envs for true/false (Fixes #1059) (jrajav)
* 0.7.2 (Nicholas C. Zakas)
v0.7.2 - July 8, 2014
* 0.7.2 (Nicholas C. Zakas)
* Fix: no-mixed-spaces-and-tabs incorrectly flagging multiline comments (fixes #1055) (Nicholas C. Zakas)
* Fix: new-cap error that throws on non-string member (fixes #1056) (Nicholas C. Zakas)
* Fix: Always make globals an object (Fixes #1049) (jrajav)
* 0.7.1 (Nicholas C. Zakas)
v0.7.1 - July 7, 2014
* 0.7.1 (Nicholas C. Zakas)
* Docs: Add Related Rules sections (Fixes #990) (jrajav)
* Fix: Check output file isn't dir, fix tests (Fixes #1034) (jrajav)
* Docs: Updated documentation for several rules (Nicholas C. Zakas)
* Docs: Updated contributor guide and dev env setup guide (Nicholas C. Zakas)
* Breaking: Implement configuration hierarchy (fixes #963) (Nicholas C. Zakas)
* Update: greatly simplify eqeqeq's operator finding logic (fixes #1037) (Michael Ficarra)
* New: Add getSourceLines() to core and rule context (fixed #1005) (Jary)
* Build + Docs: Adding generated resource links to rule docs (Fixes #1021) (jrajav)
* Fix: Ignore unused params for args: 'none' (Fixes #1026) (jrajav)
* Fix: Point eqeqeq error at operator (Fixes #1029) (jrajav)
* New: report output to a file (fixes #1027) (Gyandeep Singh)
* Breaking: CLIEngine abstraction for CLI operations; formatters no longer are passed configs (fixes #935) (Nicholas C. Zakas)
* Fix: Allow stdout to drain before exiting (fixes #317) (Nicholas C. Zakas)
* New: add no-undefined rule (fixes #1020) (Michael Ficarra)
* New: Added no-mixed-spaces-and-tabs rule (fixes #1003) (Jary)
* New: Added no-trailing-spaces rule (fixes #995) (Vitaly Puzrin)
* Update: Factor ignores out of Config (fixes #958) (jrajav)
* Fix: rewrite eol-last rule (fixes #1007) (fixes #1008) (Michael Ficarra)
* Fix: add additional IIFE exception in no-extra-parens (fixes #1004) (Michael Ficarra)
* Docs: Removed reference to brace-style Stroustrup default (fixes #1000) (Caleb Troughton)
* New: Added eol-last rule (Fixes #996) (Vitaly Puzrin)
* Fix: Put rule severity in messages (Fixes #984); deprecates passing full config to Formatters (jrajav)
* Fix: no-unused-vars to check only file globals (fixes #975) (Aliaksei Shytkin)
* Build: Makefile - Check for rule ids in docs titles (Fixes #969) (Delapouite)
* Docs: guard-for-in - added missing id in title (Fixes #969) (Delapouite)
* Breaking: Change 'no-yoda' rule to 'yoda' and add "always" option (Fixes #959) (jrajav)
* Fix: Fixes no-unused-vars to check /*globals*/ (Fixes #955) (jrajav)
* Update: no-eval to also warn on setTimeout and setInterval (fixes #721) (Nicholas C. Zakas)
* Remove: experimental match() method (Nicholas C. Zakas)
* Update: space-in-brackets now always allows empty object and array literals to have no spaces (fixes #797) (Nicholas C. Zakas)
* New: Allow the cli parameter "color" and "no-color" (fixes #954) (Tom Gallacher)
* Fix: valid-jsdoc no more warning for multi-level params (Fixes #925) (Delapouite)
* Update: Search parent directories for .eslintignore (Fixes #933) (jrajav)
* Fix: Correct order of arguments passed to assert.equal (fixes #945) (Michał Gołębiowski)
* Update: Write the summary in stylish formatter in yellow if no errors (fixes #906); test coloring of messages (Michał Gołębiowski)
* Fix: Corrects configs merging into base config (Fixes #838) (jrajav)
* Fix: Adding check if char is non-alphabetic to new-cap (Fixes #940) (jrajav)
* Docs: Update about page description (fixes #936) (Nicholas C. Zakas)
* Docs: Add '/', forgotten in first commit (Fixes #931) (jrajav)
* Update: Rule `new-cap` checks capitalized functions (fixes #904) (Aliaksei Shytkin)
* Docs: Mention allowed semicolons in "never" mode for 'semi' rule (fixes #931) (jrajav)
* Docs: Mention Yeoman generator in dev setup (fixes #914) (Nicholas C. Zakas)
* Build: Remove flaky perf test from Travis (Nicholas C. Zakas)
* Breaking: Refactor .eslintignore functionality (refs #928, fixes #901, fixes #837, fixes #853) (Nicholas C. Zakas)
* 0.6.2 (Nicholas C. Zakas)
* Breaking: Remove JSON support for .eslintignore (fixes #883) (icebox)
v0.6.2 - May 23, 2014
* 0.6.2 (Nicholas C. Zakas)
* Fix: Adding per-environment rule configs to docs and doc validation (Fixes #918) (jrajav)
* Docs: Updated contribution guidelines (Nicholas C. Zakas)
* Docs: Update description of eqeqeq to mention special cases (fixes #924) (Nicholas C. Zakas)
* Fix: block-scoped-var CatchClause handling (fixes #922) (Michael Ficarra)
* Fix: block-scoped-var respects decls in for and for-in (fixes #919) (Michael Ficarra)
* Update: Implement eqeqeq option "allow-null" (fixes #910) (Michał Gołębiowski)
* Fix: new-cap should allow non-alpha characters (fixes #897) (Michael Ficarra)
* Update: Refactor ESLintTester to fix dependency hell (fixes #602) (Nicholas C. Zakas)
* Fix: Merge configs with ancestors (Fixes #820) (jrajav)
* Fix: no-fallthrough should respect block statements in case statements (fixes #893) (Nicholas C. Zakas)
* Docs: Fix layout issue in configuration docs (fixes #889) (Nicholas C. Zakas)
* Build: Enable default-case rule (fixes #881) (icebox)
* Build: Enable space-after-keywords (fixes #884) (icebox)
* Fix api double emit on comment nodes (fixes #876) (Aliaksei Shytkin)
* 0.6.1 (Nicholas C. Zakas)
v0.6.1 - May 17, 2014
* 0.6.1 (Nicholas C. Zakas)
* Upgrade: Optionator to 0.4.0 (fixes #885) (Nicholas C. Zakas)
* 0.6.0 (Nicholas C. Zakas)
v0.6.0 - May 17, 2014
* 0.6.0 (Nicholas C. Zakas)
* Fix: Remove -r alias for --rule (fixes #882) (Nicholas C. Zakas)
* Docs: Update dev setup, contributing, default-case descriptions (Nicholas C. Zakas)
* Update: valid-jsdoc now allows you to optionally turn off parameter description checks (fixes #822) (Nicholas C. Zakas)
* Breaking: brace-style now disallows block statements where curlies are on the same line (fixes #758) (Nicholas C. Zakas)
* Add linting Makefile.js (fixes #870) (icebox)
* add rule flag, closes #692 (George Zahariev)
* Add check between rules doc and index (fixes #865) (icebox)
* Add Build Next mention in integrations README. (icebox)
* document new IIFE exception for no-extra parens added as part of #655 (Michael Ficarra)
* (fixes #622) Add rule ID on documentation pages (Delapouite)
* fixes #655: add IIFE exception to no-extra-parens (Michael Ficarra)
* add new rule "no-new-require" (Wil Moore III)
* exit with non-zero status when tests fail (fixes #858) (Márton Salomváry)
* removed unicode zero width space character from messages (fixes #857) (Márton Salomváry)
* Change: --rulesdir now can be specified multiple times (fixes #830) (Nicholas C. Zakas)
* Update: Node 0.8 no longer supported (fixes #734) (Nicholas C. Zakas)
* Update: Add typed arrays into builtin environment globals (fixes #846) (Nicholas C. Zakas)
* Fix: Add prototype methods to global scope (fixes #700) (Nicholas C. Zakas)
* Rule: no-restricted-modules (fixes #791) (Christian)
* Upgrade: Esprima to 1.2 (fixes #842) (Nicholas C. Zakas)
* Docs: reporting level 2 is an error (fixes #843) (Brandon Mills)
* Upgrade: Esprima to 1.2, switch to using Esprima comment attachment (fixes #730) (Nicholas C. Zakas)
* Fix: Semi rule incorrectly flagging extra semicolon (fixes #840) (Nicholas C. Zakas)
* Build: Update Travis to only test Node 0.10 (refs #734) (Nicholas C. Zakas)
* Add "nofunc" option (fixes #829) (Conrad Zimmerman)
* Rule: no-inner-declarations (fixes #587) (Brandon Mills)
* Rule 'block-scoped-var': correct scope for functions, arguments (fixes #832) (Aliaksei Shytkin)
* Rule: default-case (fixes #787) (Aliaksei Shytkin)
* Ignored files are excluded unless --force is passed on the CLI (Nick Fisher)
* Fixes a typo and a broken link in the documentation (Nick Fisher)
* Replaces .some() with .indexOf() where appropriate (Nick Fisher)
* Fix correct config merge for array values (fixes #819) (Aliaksei Shytkin)
* Remove warning about ESLint being in Alpha (Nick Fisher)
* Adds `space-after-keywords` rule (fixes #807) (Nick Fisher)
* Rule: no-lonely-if (fixes #790) (Brandon Mills)
* Add ignore comments in file (fixes #305) (Aliaksei Shytkin)
* 0.5.1 (Nicholas C. Zakas)
* Change: no-unused-vars default to 'all' (fixes #760) (Nicholas C. Zakas)
v0.5.1 - April 17, 2014
* 0.5.1 (Nicholas C. Zakas)
* Fix general config not to be modified by comment config in files (fixes #806) (Aliaksei Shytkin)
* SVG badges (Ryuichi Okumura)
* fixes #804: clean up implementation of #803 (which fixed #781) (Michael Ficarra)
* Build: Fix perf test to take median of three runs (fixes #781) (Nicholas C. Zakas)
* Fix: --reset will now properly ignore default rules in environments.json (fixes #800) (Nicholas C. Zakas)
* Docs: Updated contributor guidelines (Nicholas C. Zakas)
* Added Mocha global variables for TDD style. Fixes #793. (Golo Roden)
* Rule: no-sequences (fixes #561) (Brandon Mills)
* Change .eslintignore to plain text (fixes #761) (Brandon Mills)
* Change 'no-spaced-func' message (fixes #762) (Aliaksei Shytkin)
* Rule 'block-scoped-var' works correct when object inits (fixes #783) (Aliaksei Shytkin)
* Build: Always build docs site on top of origin/master (Nicholas C. Zakas)
* 0.5.0 (Nicholas C. Zakas)
v0.5.0 - April 10, 2014
* 0.5.0 (Nicholas C. Zakas)
* Build: Bump perf limit so Travis won't fail every time (fixes #780) (Nicholas C. Zakas)
* Add tests to cover 100% of eslint.js (Aliaksei Shytkin)
* Fix: Make sure no-path-concat doesn't flag non-concat operations (fixes #776) (Nicholas C. Zakas)
* Rule 'no-unused-var' in functional expression with identifier (fixes #775) (Aliaksei Shytkin)
* Rule: valid-typeof (Ian Christian Myers)
* Add global cli flag (ref #692) (Brandon Mills)
* update to latest Optionator (George Zahariev)
* Add options for rule 'no-unused-vars' to check all arguments in functions (fixes #728) (Aliaksei Shytkin)
* Fix: Cleanup package.json (Nicholas C. Zakas)
* New: Experimental support for CSS Auron (fixes #765) (Nicholas C. Zakas)
* Lint tests on build (fixes #764) (Aliaksei Shytkin)
* Rule block-scoped-var works correct with object properties (fixes #755) (Aliaksei Shytkin)
* Breaking: implement eslint-env and remove jshint/jslint environment comment support (fixes #759) (Aliaksei Shytkin)
* readme: npm i -> npm install (Linus Unnebäck)
* Add env flag to cli options summary (fixes #752) (Brandon Mills)
* Fix: Give the perf test a better calculated budget (fixes #749) (Nicholas C. Zakas)
* give the `env` flag type `[String]`, improve code (fixes #748) (George Zahariev)
* fixes #735: add new, more efficient getTokens interfaces (Michael Ficarra)
* Add --env cli flag (ref #692) (Brandon Mills)
* Fixes #740 - Make sure callbacks exist before marking them as 'handled'. (mstuart)
* fixes #743: wrap-regex rule warns on regex used in dynamic member access (Michael Ficarra)
* replace tab indents with 4 spaces in lib/rules/handle-callback-err.js (Michael Ficarra)
* Adding homepage and bugs links to package.json (Peter deHaan)
* JSDoc for rules (Anton Rudeshko)
* 0.4.5 (Nicholas C. Zakas)
v0.4.5 - March 29, 2014
* 0.4.5 (Nicholas C. Zakas)
* Build: Add perf check into Travis build to better monitor performance regressions (fixes #732) (Nicholas C. Zakas)
* Fix: Make sure semi reports correct location of missing semicolon (fixes #726) (Nicholas C. Zakas)
* Add --no-eslintrc cli flag (ref #717) (Brandon Mills)
* Fix #716 crash with reset flag (Brandon Mills)
* Fixed JSON formatting and highlighting (Anton Rudeshko (Tesla))
* fixes #723: block-scoped-var throws on unnamed function expression (Michael Ficarra)
* Fix: Make stroustrup brace-style closing message make sense (fixes #719) (Nicholas C. Zakas)
* no-comma-dangle reports correct line number (Andrey Popp)
* Upgrade: Esprima to 1.1.1 and EScope to 1.0.1 (fixes #718) (Nicholas C. Zakas)
* Add reset cli flag (refs #692) (Brandon Mills)
* Relax eqeqeq null check (fixes #669) (Brandon Mills)
* 0.4.4 (Nicholas C. Zakas)
* New Rule: handle-callback-err (fixes #567) (Jamund Ferguson)
v0.4.4 - March 25, 2014
* 0.4.4 (Nicholas C. Zakas)
* Fix no-used-vars to report FunctionExpression params (fixes #697). (Andrey Popp)
* fixes #711: eslint reports wrong line number for files with shebang (Michael Ficarra)
* Fix for no-unused-vars and MemberExpression (Andrey Popp)
* added no-warning-comments rule (Alexander Schmidt)
* fixes #699: brace-style does not check function expressions (Michael Ficarra)
* rewrite block-scoped-var (Michael Ficarra)
* recommend using hasOwnProperty from Object.prototype in guard-for-in docs (Michael Ficarra)
* change conf/environments.json spacing to be simpler and more consistent (Michael Ficarra)
* Update API to use context.getFilename() instead of .filename. (Loren Segal)
* Small changes, JSDoc is clarified (Aliaksei Shytkin)
* Move FileFinder to separate file (Aliaksei Shytkin)
* Cache if file is not found (Aliaksei Shytkin)
* Use cache on config files seach (Aliaksei Shytkin)
* Added .eslintignore to load from parents folders (fixes #681) (Aliaksei Shytkin)
* fix 'node-modules' typo in docs (Fred K. Schott)
* Upgrade to the latest version of doctrine. (Brian Di Palma)
* Document optional filename and default it to `input`. (Loren Segal)
* Fix: Compatibility for Node 0.8 (Nicholas C. Zakas)
* Update: Makefile.js now uses shelljs-nodecli (Nicholas C. Zakas)
* #681 apply all .eslintignore exclusions (Aliaksei Shytkin)
* Add RuleContext.filename property (for eslint/eslint#468). (Loren Segal)
* 0.4.3 (Nicholas C. Zakas)
v0.4.3 - March 18, 2014
* 0.4.3 (Nicholas C. Zakas)
* fixes #682: rewrite no-constant-condition rule (Michael Ficarra)
* Fixes #673 allow configuration of @return errors via requireReturn - (fixes #673) (Brian Di Palma)
* Tweaking inline code formatting for "if, while, dowhile" (Peter deHaan)
* Fixes #677 getJSDocComment() should not search beyond FunctionExpression or FunctionDeclaration parent nodes. (Brian Di Palma)
* Relaxed enforcement of camelcase rule (Ian Christian Myers)
* Fixing issue #675. Incorrect triggering of no-else-return rule. (Brian Di Palma)
* Added style option for wrap-iife (Mathias Schreck)
* Fix: Issues with named function expressions in no-unused-vars and no-shadow (fixes #662) (Nicholas C. Zakas)
* Update: camelcase rule now doesn't flag function calls (fixes #656) (Nicholas C. Zakas)
* Updating documentation description for: no-space-before-semi rule, changing rules to exempt strings with semicolons and test for that condition. Fixes #629. (Jonathan Kingston)
* Adding in rule no-space-before-semi to prevent spaces before semicolons. fixes #629 (Jonathan Kingston)
* show NPM version (Paul Verest)
* adapt code formatting (Mathias Schreck)
* Added a TextMate 2 integration to the docs (Nate Silva)
* 0.4.2 (Nicholas C. Zakas)
v0.4.2 - March 3, 2014
* 0.4.2 (Nicholas C. Zakas)
* fixes #651: disable no-catch-shadow rule in node environment (Michael Ficarra)
* Fixed context.report message parsing (Ian Christian Myers)
* fixe #648: wrap-iife rule should actually check that IIFEs are wrapped (Michael Ficarra)
* Added "stroustrup" option for brace-style (Ian Christian Myers)
* 0.4.1 (Nicholas C. Zakas)
v0.4.1 - February 27, 2014
* 0.4.1 (Nicholas C. Zakas)
* Created space-in-brackets rule (Ian Christian Myers)
* Update: Allow valid-jsdoc to specify replacement tags (fixes #637) (Nicholas C. Zakas)
* Fix: Ensure getJSDocComment() works for all function declarations (fixes #638) (Nicholas C. Zakas)
* Added broccoli-eslint to integration docs (Christian)
* fixes #634: getters/setters shouldn't trigger no-dupe-keys (Michael Ficarra)
* Update: semi to also enforce not using semicolons (fixes #618) (Nicholas C. Zakas)
* New Rule: no-constant-condition - removed SwitchStatement discriminant check - removed AssignmentExpression with right Identifier - fixed copy paste error - added DoWhileStatement, ForStatement based on discussion: https://github.com/eslint/eslint/pull/624 (fixes #621) (Christian)
* New Rule: no-constant-condition (fixes #621) (Christian)
* Adding mimosa-eslint to Build System list (dbashford)
* Fix: Make sure semi flags return statements without a semicolon (fixes #616) (Nicholas C. Zakas)
* Fix: stylish formatter blue text -> white text (fixes #607) (Nicholas C. Zakas)
* Fix: radix rule should warn (not throw error) when parseInt() is called without arguments (fixes #611) (Nicholas C. Zakas)
* Update README.md (Dmitry)
* Adding JSDoc comments for TAP format helper functions (Jonathan Kingston)
* Updating documentation to include TAP format option (Jonathan Kingston)
* Fixing validation issues to TAP formatter (Jonathan Kingston)
* Adding TAP formatter and basic tests (Jonathan Kingston)
* Docs: Updated integrations page (Nicholas C. Zakas)
* 0.4.0 (Nicholas C. Zakas)
v0.4.0 - February 12, 2014
* 0.4.0 (Nicholas C. Zakas)
* Change: Switch :after to :exit (fixes #605) (Nicholas C. Zakas)
* Fix: Make sure no-unused-vars doesn't get confused by nested functions (fixes #584) (Nicholas C. Zakas)
* Update: .eslintrc to check more things (Nicholas C. Zakas)
* Fix: Make sure JSDoc parser accepts JSDoc3-style optional parameters (Nicholas C. Zakas)
* Docs: Update documentation with linking instructions for ESLintTester (Nicholas C. Zakas)
* New Rule: valid-jsdoc (fixes #536) (Nicholas C. Zakas)
* #595 improved func-names documentation (Kyle Nunery)
* #595 added more func-names tests (Kyle Nunery)
* #595 fix rule message and add more tests (Kyle Nunery)
* use optionator for option parsing, not optimist (George Zahariev)
* Include instructions for working with ESLintTester (Nicholas C. Zakas)
* #595 remove needless 'function Foo() {}' in tests (Kyle Nunery)
* #595 fix whitespace (Kyle Nunery)
* #595 fix markdown for js code blocks (Kyle Nunery)
* Adding information about Yeomen generator (Ilya Volodin)
* #595 add docs for rule func-names (Kyle Nunery)
* #595 add func-names rule (Kyle Nunery)
* migrate variables array to map (Brandon Mills)
* Perf: Move try-catch out of verify() function to allow V8 optimization (refs #574) (Nicholas C. Zakas)
* Docs: Added instructions for running npm run profile (Nicholas C. Zakas)
* refactor variable name lookup into a separate function (Brandon Mills)
* optimize findVariable() in no-unused-vars (Brandon Mills)
* move to tests/bench (Chris Dickinson)
* add `npm run profile`. (Chris Dickinson)
* #586 refactor based on https://github.com/eslint/eslint/pull/590#discussion_r9476367 (Christian)
* #586 added no-unreachable jsdoc, documentation note on hoisting case (Christian)
* #586 add hoisting check to no-unreachable (Christian)
* readme: Remove stray asterisk (Timo Tijhof)
* #580 Remove eslint.getAllComments(), related docs, related tests (Christian)
* Added test for bug fix #582. Test Passes (Shmueli Englard)
* Added curly braces to if statment (Shmueli Englard)
* Added new test for fix to #582 (fixes 582) (Shmueli Englard)
* Bug #582: Added check if node.value isn't a string just exit (Shmueli Englard)
* Update Rule: implement curly options for single-statement bodies (fixes #511) (Nicholas C. Zakas)
* New Rule: no-extra-boolean-cast (fixes #557) (Brandon Mills)
* New Rule: no-sparse-arrays (fixes #499) (Nicholas C. Zakas)
* Fix: no-spaced-func is now an error (Nicholas C. Zakas)
* New Rule: no-process-exit (fixes #568) (Nicholas C. Zakas)
* New Rule: no-labels (fixes #550) (Nicholas C. Zakas)
* New Rule: no-lone-blocks (fixes #512) (Brandon Mills)
* Added Emacs/Flycheck integration (Nikolai Prokoschenko)
* Build: Add perf test (Nicholas C. Zakas)
* Fix: no-cond-assign shouldn't throw error when there's a for loop with an empty conditional (fixes #53) (Nicholas C. Zakas)
* Docs: Add docs for no-regex-spaces and all doc errors now break build (closes #562) (Nicholas C. Zakas)
* Rename: regex-spaces to no-regex-spaces (Nicholas C. Zakas)
* Docs: Add docs for no-underscore-dangle (refs #562) (Nicholas C. Zakas)
* Docs: Add docs for no-undef-init (refs #562) (Nicholas C. Zakas)
* Docs: Add docs for no-return-assign (refs #562) (Nicholas C. Zakas)
* Fix: Misspelling in no-return-assign message (Nicholas C. Zakas)
* Docs: Add docs for no-new-wrappers (refs #562) (Nicholas C. Zakas)
* Docs: Add docs for no-new-object (refs #562) (Nicholas C. Zakas)
* Docs: Add docs for no-implied-eval (refs #562) (Nicholas C. Zakas)
* Docs: Updated documentation for developing rules (Nicholas C. Zakas)
* Testing: Move ESLintTester to be external dependency (fixes #480) (Nicholas C. Zakas)
* Docs: Add list of known integrations (Nicholas C. Zakas)
* Fix #570 (dmp42)
* document no-array-constructor rule (Michael Ficarra)
* fixes #500: no-array-constructor should not flag 1-argument construction (Michael Ficarra)
* fixes #501: no-array-constructor recognises CallExpression form (Michael Ficarra)
* rename no-new-array rule to no-array-constructor; ref #501 (Michael Ficarra)
* Fix: Make radix rule warn on invalid second parameter (fixes #563) (Nicholas C. Zakas)
* Docs: Added no-floating-decimal docs (refs #562) (Nicholas C. Zakas)
* New Rule: no-path-concat (fixes #540) (Nicholas C. Zakas)
* Docs: Add some missing rule docs (refs #562) (Nicholas C. Zakas)
* Fix: CLI should not output anything when there are no warnings (fixes #558) (Nicholas C. Zakas)
* New Rule: no-yoda (fixes #504) (Nicholas C. Zakas)
* New Rule: consistent-return (fixes #481) (Nicholas C. Zakas)
* Rewrite configuration documentation to include information about globals (fixes #555) (Nicholas C. Zakas)
* Allow YAML configuration files (fixes #491) (Nicholas C. Zakas)
* 0.3.0 (Nicholas C. Zakas)
v0.3.0 - January 20, 2014
* 0.3.0 (Nicholas C. Zakas)
* Config: Allow comments in JSON configuration files (fixes #492) (Nicholas C. Zakas)
* Bug: max-len fix to report correct line number (fixes #552) (Nicholas C. Zakas)
* Build: Use browserify to create browser-ready ESLint (fixes #119) (Nicholas C. Zakas)
* Docs: Ensure all rules have entry on top-level rules index page (Nicholas C. Zakas)
* Docs: Add docs for no-fallthrough rule (Nicholas C. Zakas)
* Update README.md (Peter deHaan)
* Update README.md (Peter deHaan)
* Update package.json (Peter deHaan)
* Docs: Added documentation for semi rule (Nicholas C. Zakas)
* Build: Reset branch coverage target (Nicholas C. Zakas)
* Update build system to generate eslint.org during release (Nicholas C. Zakas)
* Updated setup doc (Nicholas C. Zakas)
* Fix #525 & #528 (Mangled Deutz)
* Improve no-negated-in-lhs description (David Bruant)
* Fixing typo (David Bruant)
* Update no-new.md (Tamas Fodor)
* Update no-extra-semi.md (Tamas Fodor)
* Fixing broken links in documentation (Ilya Volodin)
* Update about page (Nicholas C. Zakas)
* Site generation build step and documentation updates to support it (fixes #478) (Nicholas C. Zakas)
* Change message for brace-style rule (fixes #490) (Nicholas C. Zakas)
* Add question about ES6 support to FAQ (fixes #530) (Nicholas C. Zakas)
* Set unlimited number of listeners for event emitter (fixes #524) (Nicholas C. Zakas)
* Add support for comment events (fixes #531) Add :after events for comments (Nicholas C. Zakas)
* Add :after events for comments (Nicholas C. Zakas)
* Allow config files to have any name (fixes #486). (Aparajita Fishman)
* List available formatters (fixes #533). (Aparajita Fishman)
* Add support for comment events (fixes #531) (Nicholas C. Zakas)
* Add Stylish formatter and make it default. Fixes #517 (Sindre Sorhus)
* Fix missing code exit (Mangled Deutz)
* Added unit test for calling Config.getConfig with no arguments. (Aparajita Fishman)
* Typo (Mangled Deutz)
* Fixed docs typo (Nicholas C. Zakas)
* Mark functions as used when any method is called on them (Nicholas C. Zakas)
* Fixed: Config.getConfig is called either with a file path or with no args (fixes #520) (Aparajita Fishman)
* Fix minor bug in no-empty rule (Nicholas C. Zakas)
* add more info for failure messages (Nicholas C. Zakas)
* Add ruleId to all formatters output (fixes #472) (Nicholas C. Zakas)
* Remove unused code (Nicholas C. Zakas)
* Correctly handle case with both finally and catch in no-empty (Nicholas C. Zakas)
* Update documentation for no-unused-vars (Nicholas C. Zakas)
* Ensure that bound function expressions are reported as being used (fixes #510) (Nicholas C. Zakas)
* Allow empty catch/finally blocks (fixes #514) and update documentation (fixes #513) (Nicholas C. Zakas)
* Updated contribution guidelines (Nicholas C. Zakas)
* Add default setting for no-cond-assign (Nicholas C. Zakas)
* Add build step to check rule consistency (Nicholas C. Zakas)
* update docs: explicit cli args are exempt from eslintignore exclusions (Michael Ficarra)
* fixes #505: no-cond-assign should ignore doubly parenthesised tests (Michael Ficarra)
* Renamed unnecessary-strict to no-extra-strict (Nicholas C. Zakas)
* Fixed missing documentation links (Nicholas C. Zakas)
* Add build task to check for missing docs and tests for rules (Nicholas C. Zakas)
* Slight reorganization of rule groups (Nicholas C. Zakas)
* Added one-var and sorted some rules (Nicholas C. Zakas)
* Updated Travis badge for new location (Nicholas C. Zakas)
* fixes #494: allow shebangs in processed JS files (Michael Ficarra)
* fixes #496: lint ignored files when explicitly specified via the CLI (Michael Ficarra)
* More tests (Ilya Volodin)
* Upgrade Istanbul (Ilya Volodin)
* fixes #495: holey arrays cause no-comma-dangle rule to throw (Michael Ficarra)
* Documentation and minor changes (Ilya Volodin)
* Adding missing package registration (Ilya Volodin)
* Adding support for .eslintignore and .jshintignore (Closes #484) (Ilya Volodin)
* fixes #482: brace-style bug with multiline conditions (Michael Ficarra)
* Switching Travis to use ESLint (Closes #462) (Ilya Volodin)
* 0.2.0 (Nicholas C. Zakas)
v0.2.0 - January 1, 2014
* 0.2.0 (Nicholas C. Zakas)
* Bump code coverage checks (Nicholas C. Zakas)
* Take care of unreachable code in case statement (Nicholas C. Zakas)
* Updated rule messaging and added extra tests (Nicholas C. Zakas)
* Fixing eslint errors and unittests (Ilya Volodin)
* Rule: max-nested-callbacks (Ian Christian Myers)
* Fix fall-through rule with nested switch statements (fixes #430) (Nicholas C. Zakas)
* Fixed trailing comma (Nicholas C. Zakas)
* Added more tests for func-style (Nicholas C. Zakas)
* Fixed documentation for func-style (Nicholas C. Zakas)
* Fixed linting error (Nicholas C. Zakas)
* Rule to enforce function style (fixes #460) (Nicholas C. Zakas)
* Rule is off by default. Updated documentation (Ilya Volodin)
* Rule: sort variables. Closes #457 (Ilya Volodin)
* Update architecture.md (Nicholas C. Zakas)
* Change quotes option to avoid-escapes and update docs (fixes #199) (Brandon Payton)
* Add allow-avoiding-escaped-quotes option to quotes rule (fixes #199) (Brandon Payton)
* Update no-empty-class.md (Nicholas C. Zakas)
* Updated titles on all rule documentation (fixes #348) (Nicholas C. Zakas)
* Fixing eslint errors in codebase (Ilya Volodin)
* fixes #464: space-infix-ops checks for VariableDeclarator init spacing (Michael Ficarra)
* Add options to no-unused-vars. Fixes #367 (Ilya Volodin)
* rename escape function to xmlEscape in checkstyle formatter (Michael Ficarra)
* The semi rule now reports correct line number (Ian Christian Myers)
* context.report now takes optional location (Ian Christian Myers)
* fixes #454: escape values for XML in checkstyle formatter (Michael Ficarra)
* Add color to Mocha test reporting (Ian Christian Myers)
* Rule no-nested-ternary (Ian Christian Myers)
* Fixing no-unused-var and no-redeclare (Ilya Volodin)
* fixes #449: no-mixed-requires throws TypeError when grouping is enabled (Michael Ficarra)
* Fixed reported line number for trailing comma error (Ian Christian Myers)
* Update doc title for quote (Matthew DuVall)
* fixes #446: join paths without additional delimiters (Michael Ficarra)
* docs: add documentation for quotes rule (Matthew DuVall)
* minor style changes to lib/rules/space-infix-ops.js as requested in #444 (Michael Ficarra)
* remove "function invalid(){ return D }" from some tests (Michael Ficarra)
* fixes #429: require spaces around infix operators; enabled by default (Michael Ficarra)
* simplify fix for #442 (Michael Ficarra)
* Fix broken test, ensure tests get run before a release is pushed (Nicholas C. Zakas)
* 0.1.4 (Nicholas C. Zakas)
v0.1.4 - December 5, 2013
* 0.1.4 (Nicholas C. Zakas)
* Add release scripts to package.json (Nicholas C. Zakas)
* Fixed release error in Makefile (Nicholas C. Zakas)
* Fix JSHint warnings (Nicholas C. Zakas)
* Make sure 'default' isn't flagged by no-space-returns-throw rule (fixes #442) (Nicholas C. Zakas)
* Fixing documentation (Ilya Volodin)
* Fixing disabling rules with invalid comments Closes #435 (Ilya Volodin)
* improve assertion on wrong number of errors (Christoph Neuroth)
* fixes #431: no-unused-expressions should not flag statement level void (Michael Ficarra)
* fixes #437: fragile no-extend-native rule (Michael Ficarra)
* change space-* rule documentation headers to be more descriptive (Michael Ficarra)
* Moved to tabs, added comments, a few more tests (Jamund Ferguson)
* split GH-332 rule into space-unary-word-ops and space-return-throw-case (Michael Ficarra)
* fixes #346: validate strings passed to the RegExp constructor (Michael Ficarra)
* change some documentation extensions from js to md (Michael Ficarra)
* fixes #332: unary word operators must be followed by whitespace (Michael Ficarra)
* Add some docs (Jamund Ferguson)
* DRYing cli tests and improving code coverage (Ilya Volodin)
* fixes #371: add no-shadow-restricted-names rule (Michael Ficarra)
* Added Support for Object.defineProperty() checking (Jamund Ferguson)
* fixes #333: add rule to disallow gratuitously parenthesised expressions (Michael Ficarra)
* improve rule test coverage (Michael Ficarra)
* No Extend Native (Jamund Ferguson)
* change getTokens 2nd/3rd arguments to count tokens, not characters (Michael Ficarra)
* fixes #416: no-fallthrough flagging last case + reporting wrong line num (Michael Ficarra)
* fixes #415: fix unnecessary-strict rule false positives (Michael Ficarra)
* Add missing dependency (Nicholas C. Zakas)
* Update docs related to running unit tests (Nicholas C. Zakas)
* Add JSHint as missing dependency (Nicholas C. Zakas)
* Switch to using ShellJS makefile (fixes #418) (Nicholas C. Zakas)
* Updated documentation to reflect test changes (refs #417) (Nicholas C. Zakas)
* Change to eslintTester.addRuleTest (fixes #417) (Nicholas C. Zakas)
* Fix false positives for no-script-url (fixes #400) (Nicholas C. Zakas)
* Fix lint warning (Nicholas C. Zakas)
* Fixing ESLint warnings, introducing Makefile.js (not yet wired in) (Nicholas C. Zakas)
* fixes #384: include builtin module list to avoid repl dependency (Michael Ficarra)
* 0.1.3 (Nicholas C. Zakas)
v0.1.3 - November 25, 2013
* 0.1.3 (Nicholas C. Zakas)
* Updated changelog (Nicholas C. Zakas)
* Vows is gone. Mocha is now default (Ilya Volodin)
* fixes #412: remove last remaining false positives in no-spaced-func (Michael Ficarra)
* fixes #407: no-spaced-func rule flagging non-argument-list spaced parens (Michael Ficarra)
* Add no-extra-semi to configuration (fixes #386) (Nicholas C. Zakas)
* Converting formatter tests and core (Ilya Volodin)
* Don't output anything when there are no errors in compact formatter (fixes #408) (Nicholas C. Zakas)
* Removing Node 0.11 test - it fails all the time (Nicholas C. Zakas)
* Completing conversion of rule's tests to mocha (Ilya Volodin)
* added mocha conversion tests for strict, quote-props and one-var; enhanced one of the invalid one-var tests that was expecting two messages (Michael Paulukonis)
v0.1.2 - November 23, 2013
* 0.1.2 (Nicholas C. Zakas)
* added mocha tests for radix and quotes; fixed some of the internals on quotes from vows annotations (Michael Paulukonis)
* added tests for regex-spaces, strict, unnecessary-strict; fixed some types in overview/author notes in other tests. (Michael Paulukonis)
* Converting unittests to mocha (Ilya Volodin)
* mocha conversions of tests for 'use-isnan' and 'wrap-iife' (Michael Paulukonis)
* added mocha tests semi.js and wrap-regex.js (Michael Paulukonis)
* Converting more tests to mocha (Ilya Volodin)
* Update CONTRIBUTING.md (Nicholas C. Zakas)
* Cleaning up eslintTester (Ilya Volodin)
* DRYing unittests and converting them to mocha (Ilya Volodin)
* Reformatted Gruntfile (Nicholas C. Zakas)
* Add tests to config load order: base, env, user. (icebox)
* Fixing indent in gruntfile (Ilya Volodin)
* Removing jake, adding Grunt, Travis now runs grunt (Ilya Volodin)
* Add rules per environments to config. (icebox)
* Add globals property to the environments. (icebox)
* Fix error about IIFE if the function is in a new (Marsup)
* Fix a broken link in the docs (Brian J Brennan)
* Add test coverage for additional cases, fix open paren at beginning of expr (Matthew DuVall)
* Fixing no-undef for eval use case (Ilya Volodin)
* fixes #372: disallow negated left operand in `in` operator (Michael Ficarra)
* Fixing no-self-compare rule to check for operator (Ilya Volodin)
* bug: open parens in args causes no-spaced-func to trigger (Matthew DuVall)
* fixes #369: restrict UnaryExpressions to delete in no-unused-expressions (Michael Ficarra)
* Make sure delete operator isn't flagged as unused expression (fixes #364) (Nicholas C. Zakas)
* Don't flag ++ or -- as unused expressions (fixes #366) (Nicholas C. Zakas)
* Ensure that 'use strict' isn't flagged as an unused expression (fixes #361) (Nicholas C. Zakas)
* Increase test coverage for strict-related rules (refs #361) (Nicholas C. Zakas)
* Up code coverage numbers (Nicholas C. Zakas)
* Fixes error in new-cap rule when 'new' is used without a constructor (fixes #360) (Nicholas C. Zakas)
* added files array in package json (Christian)
* removed unused jshint dependency (Christian)
* Add test coverage for new Foo constructor usage (Matt DuVall)
* Pull code coverage up by removing unused method (Matt DuVall)
* recognise CallExpression variant of RegExp ctor in no-control-regex rule (Michael Ficarra)
* Merge smart-eqeqeq into eqeqeq (Matt DuVall)
* Catch additional cases for a.b, new F, iife (Matt DuVall)
* 0.2.0-dev (Nicholas C. Zakas)
* Version 0.1.0 (Nicholas C. Zakas)
* rule: no-spaced-func disallow spaces between function identifier and application (Matt DuVall)
v0.1.1 - November 09, 2013
* Ensure mergeConfigs() doesn't thrown an error when keys are missing in base config (fixes #358) (Nicholas C. Zakas)
v0.1.0 - November 03, 2013
* Version 0.1.0 (Nicholas C. Zakas)
* Updated Readme for v0.1.0 (Nicholas C. Zakas)
* Bump code coverage verification to 95% across the board (Nicholas C. Zakas)
* Fixed broken links (Nicholas C. Zakas)
* Added information about runtime rules (Nicholas C. Zakas)
* Added documentation about configuration files (Nicholas C. Zakas)
* Added description of -v option (Nicholas C. Zakas)
* Updated architecture documentation (Nicholas C. Zakas)
* Fix bug in no-control-regex (fixes #347) (Nicholas C. Zakas)
* Fix link to architecture doc in readme (azu)
* Rule: No control characters in regular expressions (fixes #338) (Nicholas C. Zakas)
* Add escaping \= test (Matt DuVall)
* Add docs for rule (Matt DuVall)
* rule: no-div-regex for catching ambiguous division operators in regexes (Matt DuVall)
* Change context-var to block-scoped-var (Matt DuVall)
* Implement config.globals (Oleg Grenrus)
* Add 'config-declared global' test (Oleg Grenrus)
* Adding ability to separate rules with comma (Ilya Volodin)
* Added rule for missing 'use strict' (fixes #321) (Nicholas C. Zakas)
* Fixing unittests and finishing code (Ilya Volodin)
* Disabling/enabling rules through comments (Ilya Volodin)
* Rename rule to context-var and add documentation (Matt DuVall)
* Added link to no-global-strict doc in readme (Nicholas C. Zakas)
* Add try-catch scoping with tests (Matt DuVall)
* Fix linting error (Matt DuVall)
* Store FunctionDeclarations in scope as they can be used as literals (Matt DuVall)
* Fix to use getTokens and add test for MemberExpression usage (Matt DuVall)
* rule: block-scope-var to check for variables declared in block-scope (Matt DuVall)
* no-unused-expressions rule: add test and doc mention for `a && b()` (Michael Ficarra)
* rule: wrap-regex for parens around regular expression literals (Matt DuVall)
* fixes #308: implement no-unused-expressions rule; ref. jshint rule W030 (Michael Ficarra)
* Updated change log script to filter out merge messages (Nicholas C. Zakas)
* Updated changelog (Nicholas C. Zakas)
* 0.1.0-dev (Nicholas C. Zakas)
v0.0.9 - October 5, 2013
* Version 0.0.9 release (Nicholas C. Zakas)
* Added rule for no global strict mode (fixes #322) (Nicholas C. Zakas)
* Change default on to be errors instead of warnings (fixes #326) (Nicholas C. Zakas)
* Fixed bug where JSHint was using the wrong file in lint task (Nicholas C. Zakas)
* Updated docs for no-unused vars rule. (Andrew de Andrade)
* Removed console.log in tests. (Andrew de Andrade)
* Added link to roadmap and JSHint feature parity list. (Andrew de Andrade)
* Fixed warning when unused var declared as param in FunctionExpression/Declaration can be ignored because later param is used (Andrew de Andrade)
* Rename test for smartereqeqeq.js to smarter-eqeqeq.js (Andrew de Andrade)
* Keep test filename inline with rule name (Andrew de Andrade)
* Added further instructions for multiline test cases. (Andrew de Andrade)
* Protecting private method (Seth McLaughlin)
* Updating look up algorithm for local config files (Seth McLaughlin)
* Fixing ESLint errors (Ilya Volodin)
* Implemented local default config file (Seth McLaughlin)
* Upgrading escope version and fixing related bugs (Ilya Volodin)
* Fixing assignment during initialization issue (Ilya Volodin)
* add plain-English regexp description to no-empty-class rule (Michael Ficarra)
* fixes #289: no-empty-class flags regexps with... flags (Michael Ficarra)
* Rule: no-catch-shadow (Ian Christian Myers)
* Update no-empty for compatibility with esprima@1.0.4 (fixes #290) (Mark Macdonald)
* Fixing bug with _ in MemberExpression (Ilya Volodin)
* Rule: no-func-assign (Ian Christian Myers)
* Fix false warning from no-undef rule (fixes #283) (Mark Macdonald)
* Adding eslint to jake (Ilya Volodin)
* Rule no redeclare (Ilya Volodin)
* Fixing no use before define issues (Ilya Volodin)
* Rule: no-octal-escape (Ian Christian Myers)
* Fix for `no-proto` and `no-iterator` false positive (Ian Christian Myers)
* Rule: no-iterator (Ian Christian Myers)
* Fixing type in guard-for-in documentation (Ilya Volodin)
* Rule No use before define (Ilya Volodin)
* Added documentation for the `no-new` rule (Ian Christian Myers)
* Added documentation for the `no-eval` rule (Ian Christian Myers)
* Added documentation for the `no-caller` rule (Ian Christian Myers)
* Added documentation for the `no-bitwise` rule (Ian Christian Myers)
* simplify no-empty-class rule (Michael Ficarra)
* Fix `no-empty-class` false negatives (Ian Christian Myers)
* Added documentation for the `no-alert` rule (Ian Christian Myers)
* Added documentation for the `new-parens` rule (Ian Christian Myers)
* Added documentation for the `max-params` rule (Ian Christian Myers)
* Added documentation for `max-len` rule (Ian Christian Myers)
* Created link from rules README.md to no-plusplus.md documentation (Ian Christian Myers)
* Added documentation for `guard-for-in` rule (Ian Christian Myers)
* Added documentation for `dot-notation` rule (Ian Christian Myers)
* Added documentation for `curly` rule (Ian Christian Myers)
* Updated `camelcase` rule documentation (Ian Christian Myers)
* Added documentation for `complexity` rule (Ian Christian Myers)
* Changed `no-dangle` documentation to `no-comma-dangle` (Ian Christian Myers)
* Rule: no-empty-class (Ian Christian Myers)
* Increased test coverage for max-depth (Ian Christian Myers)
* Increased test coverage for no-shadow (Ian Christian Myers)
* Increased test coverage on no-mixed-requires (Ian Christian Myers)
* Added docs for eqeqeq and no-with (fixes #262) (Raphael Pigulla)
* Create camelcase.md (Micah Eschbacher)
* Fix issues with function in no-unused-vars (Ilya Volodin)
* Rule: No shadow (Ilya Volodin)
* fixes #252: semi rule errors on VariableDeclarations in ForInStatements (Michael Ficarra)
* rule: max-len to lint maximum length of a line (Matt DuVall)
* Fixes #249 (Raphael Pigulla)
* Merge branch 'master' of https://github.com/beardtwizzle/eslint (Jonathan Mahoney)
* Re-add lines that were accidentally deleted from config (Jonathan Mahoney)
* Add support for pre-defined environment globals (re: #228) (Jonathan Mahoney)
* Rule: no-else-return (Ian Christian Myers)
* Re-add lines that were accidentally deleted from config (Jonathan Mahoney)
* Add support for pre-defined environment globals (re: #228) (Jonathan Mahoney)
* Fix no-unused-vars to report correct line numbers (Ilya Volodin)
* Rule: no proto (Ilya Volodin)
* Rule: No Script URL (Ilya Volodin)
* Rule: max-depth (Ian Christian Myers)
* Fix: Error severity for rules with options. (Ian Christian Myers)
* Rule: No wrap func (Ilya Volodin)
* bug: Fixes semi rule for VariableDeclaration in ForStatement (Matt DuVall)
* Individual perf tests for rules (Ilya Volodin)
* Fix loading rules from a rules directory (Ian Christian Myers)
* Rule no-mixed-requires (fixes #221) (Raphael Pigulla)
* bug: Add ForStatement for no-cond-assign check (Matthew DuVall)
* JSLint XML formatter now escapes special characters in the evidence and reason attributes. (Ian Christian Myers)
* Formatter: JSLint XML (Ian Christian Myers)
* Refactored `max-statements` rule. (Ian Christian Myers)
* Fix tests broken due to new rule message text (James Allardice)
* Merge branch 'master' into match-jshint-messages (James Allardice)
* Refactored `one-var` rule. (Ian Christian Myers)
* split eslint.define into eslint.defineRule and eslint.defineRules (Michael Ficarra)
* Removed unnecessary rules.js test. (Ian Christian Myers)
* Rule: one-var (Ian Christian Myers)
* Rule: No unused variables (Ilya Volodin)
* expose interface for defining new rules at runtime without fs access (Michael Ficarra)
* disallow 00 in no-octal rule (Michael Ficarra)
* Increased test coverage for `lib/cli.js`. (Ian Christian Myers)
* Increased test coverage for `lib/rules.js` (Ian Christian Myers)
* Increased test coverage for jUnit formatter. (Ian Christian Myers)
* scripts/bundle: output bundle+map to /build directory (Michael Ficarra)
* add test for 0X... hex literals in no-octal tests (Michael Ficarra)
* fixes #200: no-octals should not see leading-0 floats as violations (Michael Ficarra)
* add back tests for loading rules from a directory (Michael Ficarra)
* add back in ability to load rules from a directory (Michael Ficarra)
* Increased test coverage for `complexity` rule. (Ian Christian Myers)
* Increased test coverage for `max-params` rule. (Ian Christian Myers)
* also output source map when generating bundle (Michael Ficarra)
* Rule: unnecessary-strict (Ian Christian Myers)
* Improve performance of getTokens (Ilya Volodin)
* Performance jake task (Ilya Volodin)
* don't force explicit listing of rules; generate listing for bundle (Michael Ficarra)
* Rule: no-dupe-keys (Ian Christian Myers)
* fixes #145: create a browser bundle (Michael Ficarra)
* Fixing no-caller bug (Ilya Volodin)
* Check for use of underscore library as an exception for var declarations (Matthew DuVall)
* Merge branch 'master' of https://github.com/nzakas/eslint into no-underscore-dangle (Matthew DuVall)
* Fixing spelling (Ilya Volodin)
* Rule: no-empty-label (Ilya Volodin)
* Add builtin globals to the global scope (fixes #185) (Mark Macdonald)
* Rule: no-loop-func (Ilya Volodin)
* Merge branch 'master' of https://github.com/nzakas/eslint into no-underscore-dangle (Matt DuVall)
* Use proper node declarations and __proto__ exception (Matt DuVall)
* Updating no-undef patch (see pull request #164) - Simplify parseBoolean() - Make knowledge of```/*jshint*/``` and ```/*global */``` internal to eslint object - Put user-declared globals in Program scope (Mark Macdonald)
* Rule: no-eq-null (Ian Christian Myers)
* fixed broken merge (Raphael Pigulla)
* fixes #143 (Raphael Pigulla)
* added consistent-this rule (Raphael Pigulla)
* Rule: no-sync to encourage async usage (Matt DuVall)
* Update eslint.json with no-underscore-dangle rule (Matt DuVall)
* Rule: no-underscore-dangle for func/var declarations (Matt DuVall)
* Warn on finding the bitwise NOT operator (James Allardice)
* Updating no-undef patch (see pull request #164) 3. Move parsing of ```/*global */``` and ```/*jshint */``` to eslint.js (Mark Macdonald)
* Warn on finding a bitwise shift operator (fixes #170) (James Allardice)
* Fix broken test (James Allardice)
* Add support for the do-while statement to the curly rule (closes #167) (James Allardice)
* Removing nasty leading underscores (Patrick Brosset)
* Added tests and test cases for a few files (Patrick Brosset)
* CLI: -f now accepts a file path (Ian Christian Myers)
* Updating no-undef patch (see pull request #164) 1. Move predefined globals to ```conf/environments.json``` 2. Move mixin() to ```lib/util.js``` (Mark Macdonald)
* Match messages to JS[LH]int where appropriate, and ensure consistent message formatting (closes #163) (James Allardice)
* Add support for the do-while statement to the curly rule (closes #167) (James Allardice)
* Removing nasty leading underscores (Patrick Brosset)
* Added tests and test cases for a few files (Patrick Brosset)
* Merge branch 'master' of github.com:nzakas/jscheck (Nicholas C. Zakas)
* Added acceptance criteria for rules to docs (Nicholas C. Zakas)
* Add no-undef (fixes #6) (Mark Macdonald)
* Fixing no-self-compare (Ilya Volodin)
* Rule: No multiline strings (Ilya Volodin)
* CLI refactor to remove process.exit(), file not found now a regular error message, updated formatters to handle this case (Nicholas C. Zakas)
* Rule: no-self-compare (Ilya Volodin)
* Rule: No unnecessary semicolons (fixes #158) (Nicholas C. Zakas)
* Fixed error in no-ex-assign when return statement as found in catch clause (Nicholas C. Zakas)
* Rename no-exc-assign to no-ex-assign and add to config (Nicholas C. Zakas)
* Renamed count-spaces to regex-spaces (Nicholas C. Zakas)
* Documentation updates (Nicholas C. Zakas)
* Put all rules into strict mode and update docs accordingly (Nicholas C. Zakas)
* Merge branch 'master' of github.com:nzakas/jscheck (Nicholas C. Zakas)
* Ensure getScope() works properly when called from Program node (fixes #148) (Nicholas C. Zakas)
* Rule: wrap-iife (Ilya Volodin)
* add additional test for no-cond-assign rule (Stephen Murray)
* Merge branch 'master' of github.com:nzakas/jscheck (Nicholas C. Zakas)
* Experimental support for Jake as a build system (fixes #151) (Nicholas C. Zakas)
* fixes #152 (Stephen Murray)
* add docs for no-exc-assign (Stephen Murray)
* Merge branch 'master' of https://github.com/nzakas/eslint into no-new-object-array-literals (Matt DuVall)
* Merge branch 'master' of https://github.com/nzakas/eslint into count-spaces (Matt DuVall)
* Added a test for getting global scope from Program node (refs #148) (Nicholas C. Zakas)
* Add positive test case for `object.Array` (Matthew DuVall)
* Only support space characters for repetitions (Matthew DuVall)
* fix line length per code conventions (Stephen Murray)
* fix indentation per code conventions (Stephen Murray)
* fixes #149 (Stephen Murray)
* Rule: no-ternary (Ian Christian Myers)
* Check that the return statement has an argument before checking its type (James Allardice)
* Rule: count-spaces for multiple spaces in regular expressions (Matt DuVall)
* Update eslint.json configuration file for literal rules (Matt DuVall)
* Created no-label-var rule. (Ian Christian Myers)
* Rule: no-new-array and no-new-object (Matt DuVall)
* Added ability to retrieve scope using escope. (Ian Christian Myers)
* Corrected unused arguments (Patrick Brosset)
* Reporting function complexity on function:after and using array push/pop to handle nesting (Patrick Brosset)
* Fixing style issues discovered while npm testing (Patrick Brosset)
* First draft proposal for a cyclomatic complexity ESLint rule (Patrick Brosset)
* Corrected file extension on no-plusplus rule documentation. (Ian Christian Myers)
* Documentation for no-delete-var rule. Closes #129 (Ilya Volodin)
* Rule: max-statements (Ian Christian Myers)
* Better documentation for the `no-plusplus` rule. (Ian Christian Myers)
* Rule: no-plusplus (Ian Christian Myers)
* Rule: no assignment in return statement (Ilya Volodin)
* Updating max-params rule name (Ilya Volodin)
* Rule: Function has too many parameters (Ilya Volodin)
* Removing merge originals (Ilya Volodin)
* Rebasing on master (Ilya Volodin)
* Rule: Variables should not be deleted (Ilya Volodin)
* Fixes incorrect reporting of missing semicolon (Ian Christian Myers)
* Rebase against master branch (Mathias Bynens)
* Rule to warn on use of Math and JSON as functions (James Allardice)
* Formatter: Checkstyle (Ian Christian Myers)
* docs: Clean up structure (Mathias Bynens)
* Merging no-native-reassign and no-redefine (Ilya Volodin)
* Rule: no native reassignment (Ilya Volodin)
* 0.0.8-dev (Nicholas C. Zakas)
* v0.0.7 released (Nicholas C. Zakas)
* Updated Tests, etc. (Jamund Ferguson)
* Added jUnit Support (Fixes #16) (Jamund Ferguson)