diff --git a/Makefile.js b/Makefile.js index c01b59f6a95e..25ecb3159ddf 100644 --- a/Makefile.js +++ b/Makefile.js @@ -1,8 +1,6 @@ /** * @fileoverview Build file * @author nzakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ /* global cat, cd, cp, echo, exec, exit, find, ls, mkdir, pwd, rm, target, test*/ diff --git a/bin/eslint.js b/bin/eslint.js index 6176c17078d6..1dbdbe8338e5 100755 --- a/bin/eslint.js +++ b/bin/eslint.js @@ -3,8 +3,6 @@ /** * @fileoverview Main CLI that is run via the eslint command. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/conf/cli-options.js b/conf/cli-options.js index 02d1f53542a4..83c815987b83 100644 --- a/conf/cli-options.js +++ b/conf/cli-options.js @@ -1,8 +1,6 @@ /** * @fileoverview Default CLIEngineOptions. * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/conf/environments.js b/conf/environments.js index 13c6da81f1af..ee76503827cb 100644 --- a/conf/environments.js +++ b/conf/environments.js @@ -1,7 +1,6 @@ /** * @fileoverview Defines environment settings and globals. * @author Elan Shanker - * @copyright 2014 Elan Shanker. All rights reserved. */ "use strict"; diff --git a/docs/developer-guide/working-with-rules-new.md b/docs/developer-guide/working-with-rules-new.md index 16f472fd43b3..b6a9d3bb7227 100644 --- a/docs/developer-guide/working-with-rules-new.md +++ b/docs/developer-guide/working-with-rules-new.md @@ -6,8 +6,6 @@ Each ESLint rule has two files: a source file in the `lib/rules` directory and a /** * @fileoverview Rule to flag use of an empty block statement * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; @@ -361,8 +359,6 @@ The basic pattern for a rule unit test file is: /** * @fileoverview Tests for no-with rule. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/docs/developer-guide/working-with-rules.md b/docs/developer-guide/working-with-rules.md index feea3cf3c589..6e476805368f 100644 --- a/docs/developer-guide/working-with-rules.md +++ b/docs/developer-guide/working-with-rules.md @@ -6,8 +6,6 @@ Each ESLint rule has two files: a source file in the `lib/rules` directory and a /** * @fileoverview Rule to flag use of an empty block statement * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; @@ -337,8 +335,6 @@ The basic pattern for a rule unit test file is: /** * @fileoverview Tests for no-with rule. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/api.js b/lib/api.js index a5805a67d266..664e9a5b40ee 100644 --- a/lib/api.js +++ b/lib/api.js @@ -1,8 +1,6 @@ /** * @fileoverview Expose out ESLint and CLI to require. * @author Ian Christian Myers - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/ast-utils.js b/lib/ast-utils.js index 7ccdda528c59..e008beeb2aea 100644 --- a/lib/ast-utils.js +++ b/lib/ast-utils.js @@ -1,8 +1,6 @@ /** * @fileoverview Common utils for AST. * @author Gyandeep Singh - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/cli-engine.js b/lib/cli-engine.js index bb21e2eeadf0..7fa1a794ea01 100644 --- a/lib/cli-engine.js +++ b/lib/cli-engine.js @@ -1,8 +1,6 @@ /** * @fileoverview Main CLI object. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/cli.js b/lib/cli.js index fcd1cb911923..adb70d8ce183 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -1,8 +1,6 @@ /** * @fileoverview Main CLI object. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/code-path-analysis/code-path-analyzer.js b/lib/code-path-analysis/code-path-analyzer.js index afb9980430a6..4e55cccee648 100644 --- a/lib/code-path-analysis/code-path-analyzer.js +++ b/lib/code-path-analysis/code-path-analyzer.js @@ -1,8 +1,6 @@ /** * @fileoverview A class of the code path analyzer. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/code-path-segment.js b/lib/code-path-analysis/code-path-segment.js index 3360d938db5b..d5361ccd0741 100644 --- a/lib/code-path-analysis/code-path-segment.js +++ b/lib/code-path-analysis/code-path-segment.js @@ -1,8 +1,6 @@ /** * @fileoverview A class of the code path segment. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/code-path-state.js b/lib/code-path-analysis/code-path-state.js index b620ed718bd5..0492d832c2c4 100644 --- a/lib/code-path-analysis/code-path-state.js +++ b/lib/code-path-analysis/code-path-state.js @@ -1,8 +1,6 @@ /** * @fileoverview A class to manage state of generating a code path. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/code-path.js b/lib/code-path-analysis/code-path.js index 2b45ed944f84..035e34e712e0 100644 --- a/lib/code-path-analysis/code-path.js +++ b/lib/code-path-analysis/code-path.js @@ -1,8 +1,6 @@ /** * @fileoverview A class of the code path. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/debug-helpers.js b/lib/code-path-analysis/debug-helpers.js index 6ecfabe955d9..e68c94bc496a 100644 --- a/lib/code-path-analysis/debug-helpers.js +++ b/lib/code-path-analysis/debug-helpers.js @@ -1,8 +1,6 @@ /** * @fileoverview Helpers to debug for code path analysis. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/fork-context.js b/lib/code-path-analysis/fork-context.js index af82e68e0c7d..00e0f97c4030 100644 --- a/lib/code-path-analysis/fork-context.js +++ b/lib/code-path-analysis/fork-context.js @@ -5,8 +5,6 @@ * This has a fork list and manages it. * * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/code-path-analysis/id-generator.js b/lib/code-path-analysis/id-generator.js index 530ea9584459..f33858cacd40 100644 --- a/lib/code-path-analysis/id-generator.js +++ b/lib/code-path-analysis/id-generator.js @@ -5,8 +5,6 @@ * information of the code path. * * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/config.js b/lib/config.js index cb2f7cfab4f1..b9c70619532c 100644 --- a/lib/config.js +++ b/lib/config.js @@ -1,8 +1,6 @@ /** * @fileoverview Responsible for loading config files * @author Seth McLaughlin - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/config/autoconfig.js b/lib/config/autoconfig.js index ccb9f1a2fe7e..ed2223bfd78b 100644 --- a/lib/config/autoconfig.js +++ b/lib/config/autoconfig.js @@ -1,8 +1,6 @@ /** * @fileoverview Used for creating a suggested configuration based on project code. * @author Ian VanSchooten - * @copyright 2015 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/config/config-file.js b/lib/config/config-file.js index f5ef3e88c6e3..51a81c733163 100644 --- a/lib/config/config-file.js +++ b/lib/config/config-file.js @@ -1,8 +1,6 @@ /** * @fileoverview Helper to locate and load configuration files. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ /* eslint no-use-before-define: 0 */ diff --git a/lib/config/config-initializer.js b/lib/config/config-initializer.js index 2e00c54a5259..3d0e78fefe11 100644 --- a/lib/config/config-initializer.js +++ b/lib/config/config-initializer.js @@ -1,7 +1,6 @@ /** * @fileoverview Config initialization wizard. * @author Ilya Volodin - * @copyright 2015 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/config/config-ops.js b/lib/config/config-ops.js index 6cf406ce57fa..727d3afa049b 100644 --- a/lib/config/config-ops.js +++ b/lib/config/config-ops.js @@ -2,8 +2,6 @@ * @fileoverview Config file operations. This file must be usable in the browser, * so no Node-specific code can be here. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/config/config-rule.js b/lib/config/config-rule.js index 513e0f4bda30..c0a394efee10 100644 --- a/lib/config/config-rule.js +++ b/lib/config/config-rule.js @@ -1,8 +1,6 @@ /** * @fileoverview Create configurations for a rule * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/config/config-validator.js b/lib/config/config-validator.js index d273b26683c3..712035769617 100644 --- a/lib/config/config-validator.js +++ b/lib/config/config-validator.js @@ -1,8 +1,6 @@ /** * @fileoverview Validates configs. * @author Brandon Mills - * @copyright 2015 Brandon Mills - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/config/environments.js b/lib/config/environments.js index 6470eec1b38b..e7711836e514 100644 --- a/lib/config/environments.js +++ b/lib/config/environments.js @@ -1,8 +1,6 @@ /** * @fileoverview Environments manager * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/config/plugins.js b/lib/config/plugins.js index d1bfbd83fa0c..e157eb123c9d 100644 --- a/lib/config/plugins.js +++ b/lib/config/plugins.js @@ -1,8 +1,6 @@ /** * @fileoverview Plugins manager * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/eslint.js b/lib/eslint.js index e6b50fb661e8..e9525f660ab3 100755 --- a/lib/eslint.js +++ b/lib/eslint.js @@ -1,8 +1,6 @@ /** * @fileoverview Main ESLint object. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/file-finder.js b/lib/file-finder.js index 0b7fc3fbf66f..4dbb7544a370 100644 --- a/lib/file-finder.js +++ b/lib/file-finder.js @@ -1,8 +1,6 @@ /** * @fileoverview Util class to find config files. * @author Aliaksei Shytkin - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/formatters/html.js b/lib/formatters/html.js index e8b5cd78deeb..da3f7596fd04 100644 --- a/lib/formatters/html.js +++ b/lib/formatters/html.js @@ -1,7 +1,6 @@ /** * @fileoverview HTML reporter * @author Julian Laval - * @copyright 2015 Julian Laval. All rights reserved. */ "use strict"; diff --git a/lib/formatters/json.js b/lib/formatters/json.js index c1101970efa4..82138af18748 100644 --- a/lib/formatters/json.js +++ b/lib/formatters/json.js @@ -1,7 +1,6 @@ /** * @fileoverview JSON reporter * @author Burak Yigit Kaya aka BYK - * @copyright 2015 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/lib/formatters/table.js b/lib/formatters/table.js index faa691c6ea48..e2876444556b 100644 --- a/lib/formatters/table.js +++ b/lib/formatters/table.js @@ -1,7 +1,6 @@ /** * @fileoverview "table reporter. * @author Gajus Kuizinas - * @copyright 2016 Gajus Kuizinas . All rights reserved. */ "use strict"; diff --git a/lib/formatters/unix.js b/lib/formatters/unix.js index ba2e31f2f80d..ce429fee25b9 100644 --- a/lib/formatters/unix.js +++ b/lib/formatters/unix.js @@ -1,7 +1,6 @@ /** * @fileoverview unix-style formatter. * @author oshi-shinobu - * @copyright 2015 oshi-shinobu. All rights reserved. */ "use strict"; diff --git a/lib/formatters/visualstudio.js b/lib/formatters/visualstudio.js index d0a3d99eb793..5d53dde289ed 100644 --- a/lib/formatters/visualstudio.js +++ b/lib/formatters/visualstudio.js @@ -1,8 +1,6 @@ /** * @fileoverview Visual Studio compatible formatter * @author Ronald Pijnacker - * @copyright 2015 Ronald Pijnacker. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/ignored-paths.js b/lib/ignored-paths.js index deabf8c58663..c6a710a9b567 100644 --- a/lib/ignored-paths.js +++ b/lib/ignored-paths.js @@ -1,8 +1,6 @@ /** * @fileoverview Responsible for loading ignore config files and managing ignore patterns * @author Jonathan Rajavuori - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/load-rules.js b/lib/load-rules.js index 58b0853fe254..6691dbba4b35 100644 --- a/lib/load-rules.js +++ b/lib/load-rules.js @@ -1,8 +1,6 @@ /** * @fileoverview Module for loading rules from files and directories. * @author Michael Ficarra - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/logging.js b/lib/logging.js index 097c29a1d5c5..7237c7e994b0 100644 --- a/lib/logging.js +++ b/lib/logging.js @@ -1,8 +1,6 @@ /** * @fileoverview Handle logging for ESLint * @author Gyandeep Singh - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/options.js b/lib/options.js index 42a915d86c30..bbb2e001a4a7 100644 --- a/lib/options.js +++ b/lib/options.js @@ -1,8 +1,6 @@ /** * @fileoverview Options configuration for optionator. * @author George Zahariev - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/rule-context.js b/lib/rule-context.js index 84b74e886fcb..88e68abd73e9 100644 --- a/lib/rule-context.js +++ b/lib/rule-context.js @@ -1,8 +1,6 @@ /** * @fileoverview RuleContext utility for rules * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/rules.js b/lib/rules.js index 5fd4ef027eda..24a8fd8a497b 100644 --- a/lib/rules.js +++ b/lib/rules.js @@ -1,8 +1,6 @@ /** * @fileoverview Defines a storage for rules. * @author Nicholas C. Zakas - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/rules/accessor-pairs.js b/lib/rules/accessor-pairs.js index 8f8f5293dc2c..dbcf81ace0f0 100644 --- a/lib/rules/accessor-pairs.js +++ b/lib/rules/accessor-pairs.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag wrapping non-iife in parens * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/lib/rules/array-bracket-spacing.js b/lib/rules/array-bracket-spacing.js index 9a8fd98d04c1..d2d5ca813138 100644 --- a/lib/rules/array-bracket-spacing.js +++ b/lib/rules/array-bracket-spacing.js @@ -1,10 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of array brackets. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. - * @copyright 2014 Brandyn Bennett. All rights reserved. - * @copyright 2014 Michael Ficarra. No rights reserved. - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/lib/rules/array-callback-return.js b/lib/rules/array-callback-return.js index dadf3c9ab38d..69effa3fce34 100644 --- a/lib/rules/array-callback-return.js +++ b/lib/rules/array-callback-return.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to enforce return statements in callbacks of array's methods * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/arrow-body-style.js b/lib/rules/arrow-body-style.js index e435e4bfa068..80d5f089cdb6 100644 --- a/lib/rules/arrow-body-style.js +++ b/lib/rules/arrow-body-style.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to require braces in arrow function body. * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/arrow-parens.js b/lib/rules/arrow-parens.js index b61968658ac4..906a816b4185 100644 --- a/lib/rules/arrow-parens.js +++ b/lib/rules/arrow-parens.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to require parens in arrow function arguments. * @author Jxck - * @copyright 2015 Jxck. All rights reserved. */ "use strict"; diff --git a/lib/rules/arrow-spacing.js b/lib/rules/arrow-spacing.js index 61901efd8afd..d0286472e12f 100644 --- a/lib/rules/arrow-spacing.js +++ b/lib/rules/arrow-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to define spacing before/after arrow function's arrow. * @author Jxck - * @copyright 2015 Jxck. All rights reserved. */ "use strict"; diff --git a/lib/rules/block-scoped-var.js b/lib/rules/block-scoped-var.js index 69c01a2dad14..1d9b6203d16a 100644 --- a/lib/rules/block-scoped-var.js +++ b/lib/rules/block-scoped-var.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to check for "block scoped" variables by binding context * @author Matt DuVall - * @copyright 2015 Toru Nagashima. All rights reserved. - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. */ "use strict"; diff --git a/lib/rules/block-spacing.js b/lib/rules/block-spacing.js index 799d3b59b32b..b6dc6e701d25 100644 --- a/lib/rules/block-spacing.js +++ b/lib/rules/block-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow or enforce spaces inside of single line blocks. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/callback-return.js b/lib/rules/callback-return.js index 80a9c92fddbf..a80ee71f8c17 100644 --- a/lib/rules/callback-return.js +++ b/lib/rules/callback-return.js @@ -1,7 +1,6 @@ /** * @fileoverview Enforce return after a callback. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/camelcase.js b/lib/rules/camelcase.js index e2d7ffff2771..b2ec91979541 100644 --- a/lib/rules/camelcase.js +++ b/lib/rules/camelcase.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag non-camelcased identifiers * @author Nicholas C. Zakas - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/lib/rules/comma-dangle.js b/lib/rules/comma-dangle.js index d7ba9d2406d6..05c56b417751 100644 --- a/lib/rules/comma-dangle.js +++ b/lib/rules/comma-dangle.js @@ -1,10 +1,6 @@ /** * @fileoverview Rule to forbid or enforce dangling commas. * @author Ian Christian Myers - * @copyright 2015 Toru Nagashima - * @copyright 2015 Mathias Schreck - * @copyright 2013 Ian Christian Myers - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/comma-spacing.js b/lib/rules/comma-spacing.js index 7b1542e2f7d9..a13e0145ca19 100644 --- a/lib/rules/comma-spacing.js +++ b/lib/rules/comma-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Comma spacing - validates spacing before and after comma * @author Vignesh Anand aka vegetableman. - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/lib/rules/comma-style.js b/lib/rules/comma-style.js index 90ff0f6e9c77..a9ad990cd273 100644 --- a/lib/rules/comma-style.js +++ b/lib/rules/comma-style.js @@ -1,8 +1,6 @@ /** * @fileoverview Comma style - enforces comma styles of two types: last and first * @author Vignesh Anand aka vegetableman - * @copyright 2014 Vignesh Anand. All rights reserved. - * @copyright 2015 Evan Simmons. All rights reserved. */ "use strict"; diff --git a/lib/rules/computed-property-spacing.js b/lib/rules/computed-property-spacing.js index af289c293ba5..ff4febb24165 100644 --- a/lib/rules/computed-property-spacing.js +++ b/lib/rules/computed-property-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside computed properties. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/consistent-this.js b/lib/rules/consistent-this.js index c90c753e6036..7397cb0289bd 100644 --- a/lib/rules/consistent-this.js +++ b/lib/rules/consistent-this.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to enforce consistent naming of "this" context variables * @author Raphael Pigulla - * @copyright 2015 Timothy Jones. All rights reserved. - * @copyright 2015 David Aurelio. All rights reserved. */ "use strict"; diff --git a/lib/rules/constructor-super.js b/lib/rules/constructor-super.js index f3594606e70d..1f3ffc015556 100644 --- a/lib/rules/constructor-super.js +++ b/lib/rules/constructor-super.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to verify `super()` callings in constructor. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/curly.js b/lib/rules/curly.js index 74d9923d8eac..0503bc1a6f7f 100644 --- a/lib/rules/curly.js +++ b/lib/rules/curly.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag statements without curly braces * @author Nicholas C. Zakas - * @copyright 2015 Ivan Nikulin. All rights reserved. */ "use strict"; diff --git a/lib/rules/dot-location.js b/lib/rules/dot-location.js index 94c26217e958..ecf947e9be34 100644 --- a/lib/rules/dot-location.js +++ b/lib/rules/dot-location.js @@ -1,7 +1,6 @@ /** * @fileoverview Validates newlines before and after dots * @author Greg Cochard - * @copyright 2015 Greg Cochard */ "use strict"; diff --git a/lib/rules/eqeqeq.js b/lib/rules/eqeqeq.js index 7f971e2caa21..593b34b4342b 100644 --- a/lib/rules/eqeqeq.js +++ b/lib/rules/eqeqeq.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag statements that use != and == instead of !== and === * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/func-names.js b/lib/rules/func-names.js index 9c8855dcc6e2..cc49ce468930 100644 --- a/lib/rules/func-names.js +++ b/lib/rules/func-names.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to warn when a function expression does not have a name. * @author Kyle T. Nunery - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2014 Kyle T. Nunery. All rights reserved. */ "use strict"; diff --git a/lib/rules/func-style.js b/lib/rules/func-style.js index 9243de89eea2..581fbe04fc6d 100644 --- a/lib/rules/func-style.js +++ b/lib/rules/func-style.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to enforce a particular function style * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/generator-star-spacing.js b/lib/rules/generator-star-spacing.js index 93e150414905..9152e1e63b44 100644 --- a/lib/rules/generator-star-spacing.js +++ b/lib/rules/generator-star-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to check the spacing around the * in generator functions. * @author Jamund Ferguson - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/global-require.js b/lib/rules/global-require.js index c8ebe375769e..c6413e093edf 100644 --- a/lib/rules/global-require.js +++ b/lib/rules/global-require.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule for disallowing require() outside of the top-level module context * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/handle-callback-err.js b/lib/rules/handle-callback-err.js index 9d144bc69240..ce694fef4f5d 100644 --- a/lib/rules/handle-callback-err.js +++ b/lib/rules/handle-callback-err.js @@ -1,8 +1,6 @@ /** * @fileoverview Ensure handling of errors when we know they exist. * @author Jamund Ferguson - * @copyright 2015 Mathias Schreck. - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/id-blacklist.js b/lib/rules/id-blacklist.js index 84836761291e..83f9578d2ff9 100644 --- a/lib/rules/id-blacklist.js +++ b/lib/rules/id-blacklist.js @@ -1,11 +1,7 @@ /** * @fileoverview Rule that warns when identifier names that are - blacklisted in the configuration are used. + * blacklisted in the configuration are used. * @author Keith Cirkel (http://keithcirkel.co.uk) - * Based on id-match rule: - * @author Matthieu Larcher - * @copyright 2015 Matthieu Larcher. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/id-length.js b/lib/rules/id-length.js index dda1656b8dee..c21f801a12dd 100644 --- a/lib/rules/id-length.js +++ b/lib/rules/id-length.js @@ -1,9 +1,7 @@ /** * @fileoverview Rule that warns when identifier names are shorter or longer - * than the values provided in configuration. + * than the values provided in configuration. * @author Burak Yigit Kaya aka BYK - * @copyright 2015 Burak Yigit Kaya. All rights reserved. - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. */ "use strict"; diff --git a/lib/rules/id-match.js b/lib/rules/id-match.js index 6c7e94ab15dd..fd03b8bf6d35 100644 --- a/lib/rules/id-match.js +++ b/lib/rules/id-match.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag non-matching identifiers * @author Matthieu Larcher - * @copyright 2015 Matthieu Larcher. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/indent.js b/lib/rules/indent.js index 3eed8679a617..35a4f906e422 100644 --- a/lib/rules/indent.js +++ b/lib/rules/indent.js @@ -1,31 +1,10 @@ /** * @fileoverview This option sets a specific tab width for your code - + * * This rule has been ported and modified from nodeca. * @author Vitaly Puzrin * @author Gyandeep Singh - * @copyright 2015 Vitaly Puzrin. All rights reserved. - * @copyright 2015 Gyandeep Singh. All rights reserved. - Copyright (C) 2014 by Vitaly Puzrin - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. -*/ + */ "use strict"; diff --git a/lib/rules/init-declarations.js b/lib/rules/init-declarations.js index b30fede6de8b..68f5c317af4a 100644 --- a/lib/rules/init-declarations.js +++ b/lib/rules/init-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to control the style of variable initializations. * @author Colin Ihrig - * @copyright 2015 Colin Ihrig. All rights reserved. */ "use strict"; diff --git a/lib/rules/jsx-quotes.js b/lib/rules/jsx-quotes.js index c4865cf441cf..ad9457d6400a 100644 --- a/lib/rules/jsx-quotes.js +++ b/lib/rules/jsx-quotes.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to ensure consistent quotes used in jsx syntax. * @author Mathias Schreck - * @copyright 2015 Mathias Schreck */ "use strict"; diff --git a/lib/rules/key-spacing.js b/lib/rules/key-spacing.js index 5dee967ff2b5..e81794962786 100644 --- a/lib/rules/key-spacing.js +++ b/lib/rules/key-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to specify spacing of object literal keys and values * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/lib/rules/keyword-spacing.js b/lib/rules/keyword-spacing.js index f75918a33078..f20ff2b4b902 100644 --- a/lib/rules/keyword-spacing.js +++ b/lib/rules/keyword-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to enforce spacing before and after keywords. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/linebreak-style.js b/lib/rules/linebreak-style.js index dd0e2eb81a51..7f7378bb40cf 100644 --- a/lib/rules/linebreak-style.js +++ b/lib/rules/linebreak-style.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to enforce a single linebreak style. * @author Erik Mueller - * @copyright 2015 Varun Verma. All rights reserverd. - * @copyright 2015 James Whitney. All rights reserved. - * @copyright 2015 Erik Mueller. All rights reserved. */ "use strict"; diff --git a/lib/rules/lines-around-comment.js b/lib/rules/lines-around-comment.js index 0fc583cd9207..6242adf54c74 100644 --- a/lib/rules/lines-around-comment.js +++ b/lib/rules/lines-around-comment.js @@ -1,9 +1,6 @@ /** * @fileoverview Enforces empty lines around comments. * @author Jamund Ferguson - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. - * @copyright 2015 Jamund Ferguson. All rights reserved. - * @copyright 2015 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/lib/rules/max-depth.js b/lib/rules/max-depth.js index 1ec2b9435dce..37ff0d884d7d 100644 --- a/lib/rules/max-depth.js +++ b/lib/rules/max-depth.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to set the maximum depth block can be nested in a function. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/max-len.js b/lib/rules/max-len.js index 27dd11e5b2e5..322c94399554 100644 --- a/lib/rules/max-len.js +++ b/lib/rules/max-len.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to check for max length on a line. * @author Matt DuVall - * @copyright 2013 Matt DuVall. All rights reserved. */ "use strict"; diff --git a/lib/rules/max-nested-callbacks.js b/lib/rules/max-nested-callbacks.js index bc1538df1698..52cc2d376604 100644 --- a/lib/rules/max-nested-callbacks.js +++ b/lib/rules/max-nested-callbacks.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to enforce a maximum number of nested callbacks. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/max-params.js b/lib/rules/max-params.js index ea720469694d..c24bb4706a11 100644 --- a/lib/rules/max-params.js +++ b/lib/rules/max-params.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag when a function has too many parameters * @author Ilya Volodin - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/max-statements-per-line.js b/lib/rules/max-statements-per-line.js index 56b6eb79a8ec..193147a6e88c 100644 --- a/lib/rules/max-statements-per-line.js +++ b/lib/rules/max-statements-per-line.js @@ -1,9 +1,6 @@ /** * @fileoverview Specify the maximum number of statements allowed per line. * @author Kenneth Williams - * @copyright 2016 Kenneth Williams. All rights reserved. - * @copyright 2016 Michael Ficarra. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/max-statements.js b/lib/rules/max-statements.js index 455991522106..41173cc45615 100644 --- a/lib/rules/max-statements.js +++ b/lib/rules/max-statements.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to set the maximum number of statements in a function. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/new-cap.js b/lib/rules/new-cap.js index 3aec5c0242e6..442f5e6eb084 100644 --- a/lib/rules/new-cap.js +++ b/lib/rules/new-cap.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag use of constructors without capital letters * @author Nicholas C. Zakas - * @copyright 2014 Jordan Harband. All rights reserved. - * @copyright 2013-2014 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/newline-after-var.js b/lib/rules/newline-after-var.js index bcb04eb19ca6..6eb3d4ade2f9 100644 --- a/lib/rules/newline-after-var.js +++ b/lib/rules/newline-after-var.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to check empty newline after "var" statement * @author Gopal Venkatesan - * @copyright 2015 Gopal Venkatesan. All rights reserved. - * @copyright 2015 Casey Visco. All rights reserved. - * @copyright 2015 Ian VanSchooten. All rights reserved. */ "use strict"; diff --git a/lib/rules/newline-before-return.js b/lib/rules/newline-before-return.js index 7f9dddb2e9c0..77f3aedaa808 100644 --- a/lib/rules/newline-before-return.js +++ b/lib/rules/newline-before-return.js @@ -1,9 +1,6 @@ - /** * @fileoverview Rule to require newlines before `return` statement * @author Kai Cataldo - * @copyright 2016 Kai Cataldo. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/newline-per-chained-call.js b/lib/rules/newline-per-chained-call.js index 5ec6c5f8efd8..f703447db012 100644 --- a/lib/rules/newline-per-chained-call.js +++ b/lib/rules/newline-per-chained-call.js @@ -2,8 +2,6 @@ * @fileoverview Rule to ensure newline per method call when chaining calls * @author Rajendra Patil * @author Burak Yigit Kaya - * @copyright 2016 Rajendra Patil. All rights reserved. - * @copyright 2016 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-alert.js b/lib/rules/no-alert.js index 9700f8c57f49..34c0397b28a7 100644 --- a/lib/rules/no-alert.js +++ b/lib/rules/no-alert.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag use of alert, confirm, prompt * @author Nicholas C. Zakas - * @copyright 2015 Mathias Schreck - * @copyright 2013 Nicholas C. Zakas */ "use strict"; diff --git a/lib/rules/no-case-declarations.js b/lib/rules/no-case-declarations.js index 7f924c95ea48..17ef3885d4ad 100644 --- a/lib/rules/no-case-declarations.js +++ b/lib/rules/no-case-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of an lexical declarations inside a case clause * @author Erik Arvidsson - * @copyright 2015 Erik Arvidsson. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-class-assign.js b/lib/rules/no-class-assign.js index a42f3ed14407..fa614f7ee0e8 100644 --- a/lib/rules/no-class-assign.js +++ b/lib/rules/no-class-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow modifying variables of class declarations * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-confusing-arrow.js b/lib/rules/no-confusing-arrow.js index 09cf8d22bedf..093d3f16e844 100644 --- a/lib/rules/no-confusing-arrow.js +++ b/lib/rules/no-confusing-arrow.js @@ -2,28 +2,6 @@ * @fileoverview A rule to warn against using arrow functions when they could be * confused with comparisions * @author Jxck - * @copyright 2015 Luke Karrys. All rights reserved. - * The MIT License (MIT) - - * Copyright (c) 2015 Jxck - - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. */ "use strict"; diff --git a/lib/rules/no-console.js b/lib/rules/no-console.js index 95b48d4ef529..4bd3345e70c4 100644 --- a/lib/rules/no-console.js +++ b/lib/rules/no-console.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of console object * @author Nicholas C. Zakas - * @copyright 2016 Eric Correia. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-const-assign.js b/lib/rules/no-const-assign.js index 98eefe5bc700..e775d81a6d87 100644 --- a/lib/rules/no-const-assign.js +++ b/lib/rules/no-const-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow modifying variables that are declared using `const` * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-constant-condition.js b/lib/rules/no-constant-condition.js index b641a58a2768..39b7d0ac4860 100644 --- a/lib/rules/no-constant-condition.js +++ b/lib/rules/no-constant-condition.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use constant conditions * @author Christian Schulz - * @copyright 2014 Christian Schulz. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-continue.js b/lib/rules/no-continue.js index 5cd88c614402..343b1f1b990d 100644 --- a/lib/rules/no-continue.js +++ b/lib/rules/no-continue.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of continue statement * @author Borislav Zhivkov - * @copyright 2015 Borislav Zhivkov. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-dupe-args.js b/lib/rules/no-dupe-args.js index 46bfc3f79d9d..6db7b996a9ab 100644 --- a/lib/rules/no-dupe-args.js +++ b/lib/rules/no-dupe-args.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to flag duplicate arguments * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-dupe-class-members.js b/lib/rules/no-dupe-class-members.js index 7e3ce2904f95..f1485c758fbc 100644 --- a/lib/rules/no-dupe-class-members.js +++ b/lib/rules/no-dupe-class-members.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow duplicate name in class members. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-dupe-keys.js b/lib/rules/no-dupe-keys.js index d51cfc75e07d..6dc7d71e2ec2 100644 --- a/lib/rules/no-dupe-keys.js +++ b/lib/rules/no-dupe-keys.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag use of duplicate keys in an object. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. - * @copyright 2013 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-duplicate-case.js b/lib/rules/no-duplicate-case.js index b2dc2130119c..0166ab0229c4 100644 --- a/lib/rules/no-duplicate-case.js +++ b/lib/rules/no-duplicate-case.js @@ -1,9 +1,7 @@ /** * @fileoverview Rule to disallow a duplicate case label. - * @author Dieter Oberkofler + * @author Dieter Oberkofler * @author Burak Yigit Kaya - * @copyright 2015 Dieter Oberkofler. All rights reserved. - * @copyright 2015 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-duplicate-imports.js b/lib/rules/no-duplicate-imports.js index 9d9af9231295..3c62571a5792 100644 --- a/lib/rules/no-duplicate-imports.js +++ b/lib/rules/no-duplicate-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Restrict usage of duplicate imports. * @author Simen Bekkhus - * @copyright 2016 Simen Bekkhus. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-empty-function.js b/lib/rules/no-empty-function.js index 892b4db0f13e..412614b50109 100644 --- a/lib/rules/no-empty-function.js +++ b/lib/rules/no-empty-function.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow empty functions. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-empty-pattern.js b/lib/rules/no-empty-pattern.js index 85699dcae6e5..fa08badac03d 100644 --- a/lib/rules/no-empty-pattern.js +++ b/lib/rules/no-empty-pattern.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow an empty pattern * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-empty.js b/lib/rules/no-empty.js index 08f635d0def2..4ab4c4667082 100644 --- a/lib/rules/no-empty.js +++ b/lib/rules/no-empty.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag use of an empty block statement * @author Nicholas C. Zakas - * @copyright Nicholas C. Zakas. All rights reserved. - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-eval.js b/lib/rules/no-eval.js index 651990f58b1b..be1f5624c8a3 100644 --- a/lib/rules/no-eval.js +++ b/lib/rules/no-eval.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to flag use of eval() statement * @author Nicholas C. Zakas - * @copyright 2015 Toru Nagashima. All rights reserved. - * @copyright 2015 Mathias Schreck. All rights reserved. - * @copyright 2013 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-extra-bind.js b/lib/rules/no-extra-bind.js index 67eda7e73bfa..1407eeee3dd7 100644 --- a/lib/rules/no-extra-bind.js +++ b/lib/rules/no-extra-bind.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to flag unnecessary bind calls * @author Bence Dányi - * @copyright 2014 Bence Dányi. All rights reserved. - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-extra-label.js b/lib/rules/no-extra-label.js index 66aaab1586d4..70a52ed16a80 100644 --- a/lib/rules/no-extra-label.js +++ b/lib/rules/no-extra-label.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow unnecessary labels * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-extra-parens.js b/lib/rules/no-extra-parens.js index 34e0519a0547..b15e450fc463 100644 --- a/lib/rules/no-extra-parens.js +++ b/lib/rules/no-extra-parens.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallow parenthesising higher precedence subexpressions. * @author Michael Ficarra - * @copyright 2014 Michael Ficarra. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-func-assign.js b/lib/rules/no-func-assign.js index 287803bb2309..afe327effe43 100644 --- a/lib/rules/no-func-assign.js +++ b/lib/rules/no-func-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of function declaration identifiers as variables. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-implicit-coercion.js b/lib/rules/no-implicit-coercion.js index 430169f06a52..f5ad6fb4c706 100644 --- a/lib/rules/no-implicit-coercion.js +++ b/lib/rules/no-implicit-coercion.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow the type conversions with shorter notations. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-implicit-globals.js b/lib/rules/no-implicit-globals.js index a33510f97d7c..40444d711658 100644 --- a/lib/rules/no-implicit-globals.js +++ b/lib/rules/no-implicit-globals.js @@ -1,9 +1,7 @@ /** * @fileoverview Rule to check for implicit global variables and functions. * @author Joshua Peek - * @copyright 2015 Joshua Peek. All rights reserved. - * See LICENSE file in root directory for full license. -*/ + */ "use strict"; diff --git a/lib/rules/no-implied-eval.js b/lib/rules/no-implied-eval.js index 2b285d4dc11d..fe112096f4f9 100644 --- a/lib/rules/no-implied-eval.js +++ b/lib/rules/no-implied-eval.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag use of implied eval via setTimeout and setInterval * @author James Allardice - * @copyright 2015 Mathias Schreck. All rights reserved. - * @copyright 2013 James Allardice. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-inline-comments.js b/lib/rules/no-inline-comments.js index c8fbe8bbc77d..1afe3f31e776 100644 --- a/lib/rules/no-inline-comments.js +++ b/lib/rules/no-inline-comments.js @@ -1,7 +1,6 @@ /** * @fileoverview Enforces or disallows inline comments. * @author Greg Cochard - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-inner-declarations.js b/lib/rules/no-inner-declarations.js index ca2834cfbc34..58e84a9402a0 100644 --- a/lib/rules/no-inner-declarations.js +++ b/lib/rules/no-inner-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to enforce declarations in program or function body root. * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-invalid-regexp.js b/lib/rules/no-invalid-regexp.js index 9e504a2a5bb3..c28aae0367ec 100644 --- a/lib/rules/no-invalid-regexp.js +++ b/lib/rules/no-invalid-regexp.js @@ -1,7 +1,6 @@ /** * @fileoverview Validate strings passed to the RegExp constructor * @author Michael Ficarra - * @copyright 2014 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-invalid-this.js b/lib/rules/no-invalid-this.js index 773090edc40f..65a6078005e2 100644 --- a/lib/rules/no-invalid-this.js +++ b/lib/rules/no-invalid-this.js @@ -1,8 +1,6 @@ /** * @fileoverview A rule to disallow `this` keywords outside of classes or class-like objects. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-irregular-whitespace.js b/lib/rules/no-irregular-whitespace.js index 1199a495aafa..ff013402254b 100644 --- a/lib/rules/no-irregular-whitespace.js +++ b/lib/rules/no-irregular-whitespace.js @@ -2,7 +2,6 @@ * @fileoverview Rule to disalow whitespace that is not a tab or space, whitespace inside strings and comments are allowed * @author Jonathan Kingston * @author Christophe Porteneuve - * @copyright 2014 Jonathan Kingston. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-labels.js b/lib/rules/no-labels.js index dc592e6dd85e..cd98c9d409cc 100644 --- a/lib/rules/no-labels.js +++ b/lib/rules/no-labels.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallow Labeled Statements * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-lone-blocks.js b/lib/rules/no-lone-blocks.js index 2f99b1212b64..a8ed63107f53 100644 --- a/lib/rules/no-lone-blocks.js +++ b/lib/rules/no-lone-blocks.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag blocks with no reason to exist * @author Brandon Mills - * @copyright 2015 Roberto Vidal. All rights reserved. - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-loop-func.js b/lib/rules/no-loop-func.js index e107cec47dad..abb07d989efe 100644 --- a/lib/rules/no-loop-func.js +++ b/lib/rules/no-loop-func.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag creation of function inside a loop * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-magic-numbers.js b/lib/rules/no-magic-numbers.js index b63a525716d4..95422926306f 100644 --- a/lib/rules/no-magic-numbers.js +++ b/lib/rules/no-magic-numbers.js @@ -1,32 +1,6 @@ /** * @fileoverview Rule to flag statements that use magic numbers (adapted from https://github.com/danielstjules/buddy.js) * @author Vincent Lemeunier - * @copyright 2015 Vincent Lemeunier. All rights reserved. - * - * This rule was adapted from danielstjules/buddy.js - * The MIT License (MIT) - * - * Copyright (c) 2014 Daniel St. Jules - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - * - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-mixed-spaces-and-tabs.js b/lib/rules/no-mixed-spaces-and-tabs.js index dde09a831110..0cf62041764a 100644 --- a/lib/rules/no-mixed-spaces-and-tabs.js +++ b/lib/rules/no-mixed-spaces-and-tabs.js @@ -1,9 +1,6 @@ /** * @fileoverview Disallow mixed spaces and tabs for indentation * @author Jary Niebur - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2014 Jary Niebur. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-multi-spaces.js b/lib/rules/no-multi-spaces.js index 674d8c4279de..2f495a3cc820 100644 --- a/lib/rules/no-multi-spaces.js +++ b/lib/rules/no-multi-spaces.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallow use of multiple spaces. * @author Nicholas C. Zakas - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2015 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-multi-str.js b/lib/rules/no-multi-str.js index ae1dcca0670c..613044c89af5 100644 --- a/lib/rules/no-multi-str.js +++ b/lib/rules/no-multi-str.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag when using multiline strings * @author Ilya Volodin - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-multiple-empty-lines.js b/lib/rules/no-multiple-empty-lines.js index 9a83abb69a87..5b0995192767 100644 --- a/lib/rules/no-multiple-empty-lines.js +++ b/lib/rules/no-multiple-empty-lines.js @@ -2,7 +2,6 @@ * @fileoverview Disallows multiple blank lines. * implementation adapted from the no-trailing-spaces rule. * @author Greg Cochard - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-negated-condition.js b/lib/rules/no-negated-condition.js index 1aad1d63661e..1e6c8950a61a 100644 --- a/lib/rules/no-negated-condition.js +++ b/lib/rules/no-negated-condition.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow a negated condition * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-new-symbol.js b/lib/rules/no-new-symbol.js index 5f28d5c3fd83..c7c524641ee6 100644 --- a/lib/rules/no-new-symbol.js +++ b/lib/rules/no-new-symbol.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow use of the new operator with the `Symbol` object * @author Alberto Rodríguez - * @copyright 2016 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-param-reassign.js b/lib/rules/no-param-reassign.js index 9c7dc0bff23a..c5c44ac60cb9 100644 --- a/lib/rules/no-param-reassign.js +++ b/lib/rules/no-param-reassign.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow reassignment of function parameters. * @author Nat Burns - * @copyright 2014 Nat Burns. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-process-env.js b/lib/rules/no-process-env.js index 6a5395e57976..917510cac8ac 100644 --- a/lib/rules/no-process-env.js +++ b/lib/rules/no-process-env.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow the use of process.env() * @author Vignesh Anand - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-restricted-globals.js b/lib/rules/no-restricted-globals.js index eac3e5894f0b..4b4215e4d84d 100644 --- a/lib/rules/no-restricted-globals.js +++ b/lib/rules/no-restricted-globals.js @@ -1,8 +1,6 @@ /** * @fileoverview Restrict usage of specified globals. * @author Benoît Zugmeyer - * @copyright 2016 Benoît Zugmeyer. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-restricted-imports.js b/lib/rules/no-restricted-imports.js index 0ecd2b310813..bae6feef2555 100644 --- a/lib/rules/no-restricted-imports.js +++ b/lib/rules/no-restricted-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Restrict usage of specified node imports. * @author Guy Ellis - * @copyright 2015 Guy Ellis. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-restricted-syntax.js b/lib/rules/no-restricted-syntax.js index 52175835c896..214d74b8acea 100644 --- a/lib/rules/no-restricted-syntax.js +++ b/lib/rules/no-restricted-syntax.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of certain node types * @author Burak Yigit Kaya - * @copyright 2015 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-self-assign.js b/lib/rules/no-self-assign.js index 2a03cab4072c..4e7326e11185 100644 --- a/lib/rules/no-self-assign.js +++ b/lib/rules/no-self-assign.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow assignments where both sides are exactly the same * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-shadow-restricted-names.js b/lib/rules/no-shadow-restricted-names.js index e39cd00f472e..7d3a712ec01b 100644 --- a/lib/rules/no-shadow-restricted-names.js +++ b/lib/rules/no-shadow-restricted-names.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow shadowing of NaN, undefined, and Infinity (ES5 section 15.1.1) * @author Michael Ficarra - * @copyright 2013 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-shadow.js b/lib/rules/no-shadow.js index 16432d6b02c6..1ed8a26da329 100644 --- a/lib/rules/no-shadow.js +++ b/lib/rules/no-shadow.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag on declaring variables already declared in the outer scope * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-this-before-super.js b/lib/rules/no-this-before-super.js index 2296ccd78e6e..25a6786cf127 100644 --- a/lib/rules/no-this-before-super.js +++ b/lib/rules/no-this-before-super.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow using `this`/`super` before `super()`. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-throw-literal.js b/lib/rules/no-throw-literal.js index 745850dc8dd3..ed5a06eddfcd 100644 --- a/lib/rules/no-throw-literal.js +++ b/lib/rules/no-throw-literal.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to restrict what can be thrown as an exception. * @author Dieter Oberkofler - * @copyright 2015 Ian VanSchooten. All rights reserved. - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-trailing-spaces.js b/lib/rules/no-trailing-spaces.js index 634867071560..31308ca083e9 100644 --- a/lib/rules/no-trailing-spaces.js +++ b/lib/rules/no-trailing-spaces.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow trailing spaces at the end of lines. * @author Nodeca Team - * @copyright 2015 Greg Cochard */ "use strict"; diff --git a/lib/rules/no-undef-init.js b/lib/rules/no-undef-init.js index 1348c641e362..c031c65b915d 100644 --- a/lib/rules/no-undef-init.js +++ b/lib/rules/no-undef-init.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag when initializing to undefined * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-undef.js b/lib/rules/no-undef.js index c3a88725678e..9e656c17bafb 100644 --- a/lib/rules/no-undef.js +++ b/lib/rules/no-undef.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag references to undeclared variables. * @author Mark Macdonald - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * @copyright 2013 Mark Macdonald. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-unexpected-multiline.js b/lib/rules/no-unexpected-multiline.js index 312376a334ac..8794953e97ae 100644 --- a/lib/rules/no-unexpected-multiline.js +++ b/lib/rules/no-unexpected-multiline.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to spot scenarios where a newline looks like it is ending a statement, but is not. * @author Glen Mailer - * @copyright 2015 Glen Mailer */ "use strict"; diff --git a/lib/rules/no-unmodified-loop-condition.js b/lib/rules/no-unmodified-loop-condition.js index 47a0e3885a38..6fbb7768a40b 100644 --- a/lib/rules/no-unmodified-loop-condition.js +++ b/lib/rules/no-unmodified-loop-condition.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow use of unmodified expressions in loop conditions * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-unneeded-ternary.js b/lib/rules/no-unneeded-ternary.js index fcbff265f91d..357cc7f01022 100644 --- a/lib/rules/no-unneeded-ternary.js +++ b/lib/rules/no-unneeded-ternary.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag no-unneeded-ternary * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. - * @copyright 2015 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-unreachable.js b/lib/rules/no-unreachable.js index ce3f4ba01fb2..680c8f0edd34 100644 --- a/lib/rules/no-unreachable.js +++ b/lib/rules/no-unreachable.js @@ -1,8 +1,6 @@ /** * @fileoverview Checks for unreachable code due to return, throws, break, and continue. * @author Joel Feenstra - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-unused-expressions.js b/lib/rules/no-unused-expressions.js index 3da55602f02b..9588c800a97b 100644 --- a/lib/rules/no-unused-expressions.js +++ b/lib/rules/no-unused-expressions.js @@ -1,7 +1,6 @@ /** * @fileoverview Flag expressions in statement position that do not side effect * @author Michael Ficarra - * @copyright 2013 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-unused-labels.js b/lib/rules/no-unused-labels.js index e53b333f2e79..e7da19903892 100644 --- a/lib/rules/no-unused-labels.js +++ b/lib/rules/no-unused-labels.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow unused labels. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-use-before-define.js b/lib/rules/no-use-before-define.js index b8f67144c579..ea0add2ea0d5 100644 --- a/lib/rules/no-use-before-define.js +++ b/lib/rules/no-use-before-define.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag use of variables before they are defined * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-useless-call.js b/lib/rules/no-useless-call.js index fe6afd6d2487..7feb0558fca4 100644 --- a/lib/rules/no-useless-call.js +++ b/lib/rules/no-useless-call.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to disallow unnecessary `.call()` and `.apply()`. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-useless-concat.js b/lib/rules/no-useless-concat.js index 96baf51a4e0c..104a688315c0 100644 --- a/lib/rules/no-useless-concat.js +++ b/lib/rules/no-useless-concat.js @@ -1,8 +1,6 @@ /** * @fileoverview disallow unncessary concatenation of template strings * @author Henry Zhu - * @copyright 2015 Henry Zhu. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-useless-constructor.js b/lib/rules/no-useless-constructor.js index 244f2b458f64..f4f036d40481 100644 --- a/lib/rules/no-useless-constructor.js +++ b/lib/rules/no-useless-constructor.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag the use of redundant constructors in classes. * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/no-useless-escape.js b/lib/rules/no-useless-escape.js index bff58483e54d..2b6f9c7e9cca 100644 --- a/lib/rules/no-useless-escape.js +++ b/lib/rules/no-useless-escape.js @@ -1,7 +1,6 @@ /** * @fileoverview Look for useless escapes in strings and regexes * @author Onur Temizkan - * @copyright 2016 Onur Temizkan. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-var.js b/lib/rules/no-var.js index 05cb6e99eca5..369618653187 100644 --- a/lib/rules/no-var.js +++ b/lib/rules/no-var.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to check for the usage of var. * @author Jamund Ferguson - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-void.js b/lib/rules/no-void.js index 858304dd1d52..ee7603f3031f 100644 --- a/lib/rules/no-void.js +++ b/lib/rules/no-void.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to disallow use of void operator. * @author Mike Sidorov - * @copyright 2014 Mike Sidorov. All rights reserved. */ "use strict"; diff --git a/lib/rules/no-whitespace-before-property.js b/lib/rules/no-whitespace-before-property.js index 0910f2fce422..f853a39c7fb5 100644 --- a/lib/rules/no-whitespace-before-property.js +++ b/lib/rules/no-whitespace-before-property.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow whitespace before properties * @author Kai Cataldo - * @copyright 2015 Kai Cataldo. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/object-curly-spacing.js b/lib/rules/object-curly-spacing.js index 8a7b9aefeeb3..680bdc6746bb 100644 --- a/lib/rules/object-curly-spacing.js +++ b/lib/rules/object-curly-spacing.js @@ -1,12 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of object literals. * @author Jamund Ferguson - * @copyright 2014 Brandyn Bennett. All rights reserved. - * @copyright 2014 Michael Ficarra. No rights reserved. - * @copyright 2014 Vignesh Anand. All rights reserved. - * @copyright 2015 Jamund Ferguson. All rights reserved. - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/object-shorthand.js b/lib/rules/object-shorthand.js index c6ffa0f8f34a..23bc86129c97 100644 --- a/lib/rules/object-shorthand.js +++ b/lib/rules/object-shorthand.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to enforce concise object methods and properties. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/lib/rules/one-var-declaration-per-line.js b/lib/rules/one-var-declaration-per-line.js index 2f763485d7e3..80c0e573aa3a 100644 --- a/lib/rules/one-var-declaration-per-line.js +++ b/lib/rules/one-var-declaration-per-line.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to check multiple var declarations per line * @author Alberto Rodríguez - * @copyright 2016 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/one-var.js b/lib/rules/one-var.js index d7cccbfe9da0..e96f2d10f1f4 100644 --- a/lib/rules/one-var.js +++ b/lib/rules/one-var.js @@ -1,10 +1,6 @@ /** * @fileoverview A rule to control the use of single variable declarations. * @author Ian Christian Myers - * @copyright 2015 Ian VanSchooten. All rights reserved. - * @copyright 2015 Joey Baker. All rights reserved. - * @copyright 2015 Danny Fritz. All rights reserved. - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/operator-assignment.js b/lib/rules/operator-assignment.js index 9656846019d3..f44d0b529fa9 100644 --- a/lib/rules/operator-assignment.js +++ b/lib/rules/operator-assignment.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to replace assignment expressions with operator assignment * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/lib/rules/operator-linebreak.js b/lib/rules/operator-linebreak.js index aa3c03692839..f0aae97c788f 100644 --- a/lib/rules/operator-linebreak.js +++ b/lib/rules/operator-linebreak.js @@ -1,7 +1,6 @@ /** * @fileoverview Operator linebreak - enforces operator linebreak style of two types: after and before * @author Benoît Zugmeyer - * @copyright 2015 Benoît Zugmeyer. All rights reserved. */ "use strict"; diff --git a/lib/rules/padded-blocks.js b/lib/rules/padded-blocks.js index f245a858f072..7d2eea1e77fb 100644 --- a/lib/rules/padded-blocks.js +++ b/lib/rules/padded-blocks.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to ensure blank lines within blocks. * @author Mathias Schreck - * @copyright 2014 Mathias Schreck. All rights reserved. */ "use strict"; diff --git a/lib/rules/prefer-arrow-callback.js b/lib/rules/prefer-arrow-callback.js index eb5d5f55198f..5d51011f69ce 100644 --- a/lib/rules/prefer-arrow-callback.js +++ b/lib/rules/prefer-arrow-callback.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to suggest using arrow functions as callbacks. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/prefer-const.js b/lib/rules/prefer-const.js index ae55b5164507..bc346f9f930b 100644 --- a/lib/rules/prefer-const.js +++ b/lib/rules/prefer-const.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to suggest using of const declaration for variables that are never reassigned after declared. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/prefer-reflect.js b/lib/rules/prefer-reflect.js index 83b805a30d99..742e9c169ec3 100644 --- a/lib/rules/prefer-reflect.js +++ b/lib/rules/prefer-reflect.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to suggest using "Reflect" api over Function/Object methods * @author Keith Cirkel - * @copyright 2015 Keith Cirkel. All rights reserved. */ "use strict"; diff --git a/lib/rules/prefer-rest-params.js b/lib/rules/prefer-rest-params.js index d52c1164cbf7..70692949736a 100644 --- a/lib/rules/prefer-rest-params.js +++ b/lib/rules/prefer-rest-params.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/prefer-spread.js b/lib/rules/prefer-spread.js index de0cbbe53204..a5cb3d2c7f0a 100644 --- a/lib/rules/prefer-spread.js +++ b/lib/rules/prefer-spread.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to suggest using of the spread operator instead of `.apply()`. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/prefer-template.js b/lib/rules/prefer-template.js index 19b3d10c0ab7..c7b7cc84786c 100644 --- a/lib/rules/prefer-template.js +++ b/lib/rules/prefer-template.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to suggest using template literals instead of string concatenation. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/quote-props.js b/lib/rules/quote-props.js index f3453adb063a..7aa796e3586a 100644 --- a/lib/rules/quote-props.js +++ b/lib/rules/quote-props.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag non-quoted property names in object literals. * @author Mathias Bynens - * @copyright 2014 Brandon Mills. All rights reserved. - * @copyright 2015 Tomasz Olędzki. All rights reserved. */ "use strict"; diff --git a/lib/rules/quotes.js b/lib/rules/quotes.js index b60b46403a7c..d04f0e1c0a5e 100644 --- a/lib/rules/quotes.js +++ b/lib/rules/quotes.js @@ -1,8 +1,6 @@ /** * @fileoverview A rule to choose between single and double quote marks * @author Matt DuVall , Brandon Payton - * @copyright 2013 Matt DuVall. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/radix.js b/lib/rules/radix.js index 2a8873b6ab1e..23a2f71d4454 100644 --- a/lib/rules/radix.js +++ b/lib/rules/radix.js @@ -159,4 +159,3 @@ module.exports.schema = [ "enum": ["always", "as-needed"] } ]; - diff --git a/lib/rules/require-jsdoc.js b/lib/rules/require-jsdoc.js index bac4475e9efa..18cbff3201a8 100644 --- a/lib/rules/require-jsdoc.js +++ b/lib/rules/require-jsdoc.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to check for jsdoc presence. * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/lib/rules/require-yield.js b/lib/rules/require-yield.js index b293ee4c9e18..748dafa765c6 100644 --- a/lib/rules/require-yield.js +++ b/lib/rules/require-yield.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag the generator functions that does not have yield. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/lib/rules/semi-spacing.js b/lib/rules/semi-spacing.js index 37fbc6f3c5cc..6bfb2ecacf22 100644 --- a/lib/rules/semi-spacing.js +++ b/lib/rules/semi-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Validates spacing before and after semicolon * @author Mathias Schreck - * @copyright 2015 Mathias Schreck */ "use strict"; diff --git a/lib/rules/semi.js b/lib/rules/semi.js index 2986f406e64b..38c6b4e2adf9 100644 --- a/lib/rules/semi.js +++ b/lib/rules/semi.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag missing semicolons. * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/sort-imports.js b/lib/rules/sort-imports.js index 4e8807cedb72..7bcec4101865 100644 --- a/lib/rules/sort-imports.js +++ b/lib/rules/sort-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to require sorting of import declarations * @author Christian Schuller - * @copyright 2015 Christian Schuller. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/space-before-blocks.js b/lib/rules/space-before-blocks.js index c7fbec833161..e504904734f3 100644 --- a/lib/rules/space-before-blocks.js +++ b/lib/rules/space-before-blocks.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to ensure whitespace before blocks. * @author Mathias Schreck - * @copyright 2014 Mathias Schreck. All rights reserved. */ "use strict"; diff --git a/lib/rules/space-before-function-paren.js b/lib/rules/space-before-function-paren.js index 559a97f56a03..03b8b726fa0b 100644 --- a/lib/rules/space-before-function-paren.js +++ b/lib/rules/space-before-function-paren.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to validate spacing before function paren. * @author Mathias Schreck - * @copyright 2015 Mathias Schreck - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/rules/space-in-parens.js b/lib/rules/space-in-parens.js index bd15a41f3c66..c294ad17d09c 100644 --- a/lib/rules/space-in-parens.js +++ b/lib/rules/space-in-parens.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of parentheses. * @author Jonathan Rajavuori - * @copyright 2014 David Clark. All rights reserved. - * @copyright 2014 Jonathan Rajavuori. All rights reserved. */ "use strict"; diff --git a/lib/rules/space-unary-ops.js b/lib/rules/space-unary-ops.js index d5412e36f3ab..cdca3ab00df3 100644 --- a/lib/rules/space-unary-ops.js +++ b/lib/rules/space-unary-ops.js @@ -1,7 +1,6 @@ /** * @fileoverview This rule shoud require or disallow spaces before or after unary operations. * @author Marcin Kumorek - * @copyright 2014 Marcin Kumorek. All rights reserved. */ "use strict"; diff --git a/lib/rules/spaced-comment.js b/lib/rules/spaced-comment.js index 73f0861c8f39..a55975419275 100644 --- a/lib/rules/spaced-comment.js +++ b/lib/rules/spaced-comment.js @@ -1,9 +1,6 @@ /** * @fileoverview Source code for spaced-comments rule * @author Gyandeep Singh - * @copyright 2015 Toru Nagashima. All rights reserved. - * @copyright 2015 Gyandeep Singh. All rights reserved. - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/lib/rules/strict.js b/lib/rules/strict.js index 81f1cfbf8caf..a418c28c3795 100644 --- a/lib/rules/strict.js +++ b/lib/rules/strict.js @@ -1,9 +1,6 @@ /** * @fileoverview Rule to control usage of strict mode directives. * @author Brandon Mills - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2013-2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/lib/rules/template-curly-spacing.js b/lib/rules/template-curly-spacing.js index 4f5f9e1a4187..a591da7f863f 100644 --- a/lib/rules/template-curly-spacing.js +++ b/lib/rules/template-curly-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to enforce spacing around embedded expressions of template strings * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/rules/use-isnan.js b/lib/rules/use-isnan.js index 7d65f9c0d859..c4579a5284a5 100644 --- a/lib/rules/use-isnan.js +++ b/lib/rules/use-isnan.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to flag comparisons to the value NaN * @author James Allardice - * @copyright 2014 Jordan Harband. All rights reserved. - * @copyright 2013 James Allardice. All rights reserved. */ "use strict"; diff --git a/lib/rules/valid-jsdoc.js b/lib/rules/valid-jsdoc.js index 299095064dc4..4593dc46dacd 100644 --- a/lib/rules/valid-jsdoc.js +++ b/lib/rules/valid-jsdoc.js @@ -1,7 +1,6 @@ /** * @fileoverview Validates JSDoc comments are syntactically correct * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/lib/rules/vars-on-top.js b/lib/rules/vars-on-top.js index ae009f85ad4c..c974e56937ff 100644 --- a/lib/rules/vars-on-top.js +++ b/lib/rules/vars-on-top.js @@ -2,8 +2,6 @@ * @fileoverview Rule to enforce var declarations are only at the top of a function. * @author Danny Fritz * @author Gyandeep Singh - * @copyright 2014 Danny Fritz. All rights reserved. - * @copyright 2014 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/lib/rules/wrap-iife.js b/lib/rules/wrap-iife.js index ac5c8a45f02a..f0888172bad9 100644 --- a/lib/rules/wrap-iife.js +++ b/lib/rules/wrap-iife.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag when IIFE is not wrapped in parens * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/lib/rules/yield-star-spacing.js b/lib/rules/yield-star-spacing.js index c69594ae15a7..9a4188050f94 100644 --- a/lib/rules/yield-star-spacing.js +++ b/lib/rules/yield-star-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to check the spacing around the * in yield* expressions. * @author Bryan Smith - * @copyright 2015 Bryan Smith. All rights reserved. */ "use strict"; diff --git a/lib/rules/yoda.js b/lib/rules/yoda.js index a5ff4a962632..8b291b4a54fb 100644 --- a/lib/rules/yoda.js +++ b/lib/rules/yoda.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to require or disallow yoda comparisons * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/lib/testers/event-generator-tester.js b/lib/testers/event-generator-tester.js index c275a74b7607..00b2d03307a8 100644 --- a/lib/testers/event-generator-tester.js +++ b/lib/testers/event-generator-tester.js @@ -1,8 +1,6 @@ /** * @fileoverview Helpers to test EventGenerator interface. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/testers/rule-tester.js b/lib/testers/rule-tester.js index ce4ca1c4ba8a..4485e0d5fcc7 100644 --- a/lib/testers/rule-tester.js +++ b/lib/testers/rule-tester.js @@ -1,10 +1,6 @@ /** * @fileoverview Mocha test wrapper * @author Ilya Volodin - * @copyright 2015 Kevin Partington. All rights reserved. - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * @copyright 2014 Ilya Volodin. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/timing.js b/lib/timing.js index 103fc1164487..671ca9a62948 100644 --- a/lib/timing.js +++ b/lib/timing.js @@ -1,8 +1,6 @@ /** * @fileoverview Tracks performance of individual rules. * @author Brandon Mills - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/token-store.js b/lib/token-store.js index 787eb7e70931..0262b69a5211 100644 --- a/lib/token-store.js +++ b/lib/token-store.js @@ -1,8 +1,6 @@ /** * @fileoverview Object to handle access and retrieval of tokens. * @author Brandon Mills - * @copyright jQuery Foundation and other contributors, https://jquery.org/ - * MIT License */ "use strict"; diff --git a/lib/util/comment-event-generator.js b/lib/util/comment-event-generator.js index 90bbfe9f2f44..2989f4ee26ae 100644 --- a/lib/util/comment-event-generator.js +++ b/lib/util/comment-event-generator.js @@ -1,8 +1,6 @@ /** * @fileoverview The event generator for comments. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/glob-util.js b/lib/util/glob-util.js index 9a704d6308b8..dadefbd9665e 100644 --- a/lib/util/glob-util.js +++ b/lib/util/glob-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Utilities for working with globs and the filesystem. * @author Ian VanSchooten - * @copyright 2015 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/util/hash.js b/lib/util/hash.js index b0271bbf03dc..9f3b734c278e 100644 --- a/lib/util/hash.js +++ b/lib/util/hash.js @@ -1,8 +1,6 @@ /** * @fileoverview Defining the hashing function in one place. * @author Michael Ficarra - * @copyright 2016 Michael Ficarra. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/keywords.js b/lib/util/keywords.js index dde29c6b76c0..3fbb77771df5 100644 --- a/lib/util/keywords.js +++ b/lib/util/keywords.js @@ -1,7 +1,6 @@ /** * @fileoverview A shared list of ES3 keywords. * @author Josh Perez - * @copyright 2015 Jose Roberto Vidal. All rights reserved. */ "use strict"; diff --git a/lib/util/module-resolver.js b/lib/util/module-resolver.js index ef1f870b0ae3..251292280dd3 100644 --- a/lib/util/module-resolver.js +++ b/lib/util/module-resolver.js @@ -1,8 +1,6 @@ /** * @fileoverview Implements the Node.js require.resolve algorithm * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/node-event-generator.js b/lib/util/node-event-generator.js index 002bd29dfe3e..92253f6ca23b 100644 --- a/lib/util/node-event-generator.js +++ b/lib/util/node-event-generator.js @@ -1,8 +1,6 @@ /** * @fileoverview The event generator for AST nodes. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/npm-util.js b/lib/util/npm-util.js index c45f07901153..fd081307fd3c 100644 --- a/lib/util/npm-util.js +++ b/lib/util/npm-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Utility for executing npm commands. * @author Ian VanSchooten - * @copyright 2016 Ilya Volodin. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/path-util.js b/lib/util/path-util.js index d1c8197adfb1..ddc0b60625ac 100644 --- a/lib/util/path-util.js +++ b/lib/util/path-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Common helpers for operations on filenames and paths * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/util/rule-fixer.js b/lib/util/rule-fixer.js index 0f9ef9adf3c7..91f1033e4260 100644 --- a/lib/util/rule-fixer.js +++ b/lib/util/rule-fixer.js @@ -1,8 +1,6 @@ /** * @fileoverview An object that creates fix commands for rules. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/source-code-fixer.js b/lib/util/source-code-fixer.js index 0ea68d382b2e..e8c440d7c21e 100644 --- a/lib/util/source-code-fixer.js +++ b/lib/util/source-code-fixer.js @@ -1,8 +1,6 @@ /** * @fileoverview An object that caches and applies source code fixes. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/source-code-util.js b/lib/util/source-code-util.js index b12b095f17d0..e51c1c124c79 100644 --- a/lib/util/source-code-util.js +++ b/lib/util/source-code-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Tools for obtaining SourceCode objects. * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/lib/util/source-code.js b/lib/util/source-code.js index a79bd5b531bc..adf4df93a6b3 100644 --- a/lib/util/source-code.js +++ b/lib/util/source-code.js @@ -1,8 +1,6 @@ /** * @fileoverview Abstraction of JavaScript source code. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/lib/util/traverser.js b/lib/util/traverser.js index 2b222e839217..03a1c376e153 100644 --- a/lib/util/traverser.js +++ b/lib/util/traverser.js @@ -1,8 +1,6 @@ /** * @fileoverview Wrapper around estraverse * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/packages/eslint-config-eslint/LICENSE b/packages/eslint-config-eslint/LICENSE index 50645a16a604..d41bdf7951f0 100644 --- a/packages/eslint-config-eslint/LICENSE +++ b/packages/eslint-config-eslint/LICENSE @@ -1,4 +1,5 @@ -Copyright (c) 2015 Nicholas C. Zakas. All rights reserved. +ESLint +Copyright jQuery Foundation and other contributors, https://jquery.org/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/packages/eslint-config-eslint/index.js b/packages/eslint-config-eslint/index.js index 04b4c7b2361b..53ab7cf3936c 100644 --- a/packages/eslint-config-eslint/index.js +++ b/packages/eslint-config-eslint/index.js @@ -1,8 +1,6 @@ /** * @fileoverview Converts YAML file into JSON. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/fixtures/testers/rule-tester/no-invalid-args.js b/tests/fixtures/testers/rule-tester/no-invalid-args.js index c5bc0f5335bb..4c2e7015cbbb 100644 --- a/tests/fixtures/testers/rule-tester/no-invalid-args.js +++ b/tests/fixtures/testers/rule-tester/no-invalid-args.js @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag invalid args - ** @author Mathias Schreck - **/ + * @fileoverview Test rule to flag invalid args + * @author Mathias Schreck + */ //------------------------------------------------------------------------------ // Rule Definition @@ -20,4 +20,3 @@ module.exports = function(context) { } }; }; - diff --git a/tests/fixtures/testers/rule-tester/no-invalid-schema.js b/tests/fixtures/testers/rule-tester/no-invalid-schema.js index 3f76fbc50ed2..fdf290dc62e1 100644 --- a/tests/fixtures/testers/rule-tester/no-invalid-schema.js +++ b/tests/fixtures/testers/rule-tester/no-invalid-schema.js @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag invalid schemas - ** @author Brandon Mills - **/ + * @fileoverview Test rule to flag invalid schemas + * @author Brandon Mills + */ //------------------------------------------------------------------------------ // Rule Definition diff --git a/tests/fixtures/testers/rule-tester/no-schema-violation.js b/tests/fixtures/testers/rule-tester/no-schema-violation.js index b9ad85e0534a..2a9f65e21616 100644 --- a/tests/fixtures/testers/rule-tester/no-schema-violation.js +++ b/tests/fixtures/testers/rule-tester/no-schema-violation.js @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag schema violations - ** @author Brandon Mills - **/ + * @fileoverview Test rule to flag schema violations + * @author Brandon Mills + */ //------------------------------------------------------------------------------ // Rule Definition diff --git a/tests/fixtures/testers/rule-tester/no-test-filename b/tests/fixtures/testers/rule-tester/no-test-filename index 0f16b2596dba..752c41f0dbfe 100644 --- a/tests/fixtures/testers/rule-tester/no-test-filename +++ b/tests/fixtures/testers/rule-tester/no-test-filename @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag if the filename is missing; - ** @author Stefan Lau - **/ + * @fileoverview Test rule to flag if the filename is missing; + * @author Stefan Lau + */ //------------------------------------------------------------------------------ // Rule Definition diff --git a/tests/fixtures/testers/rule-tester/no-test-global.js b/tests/fixtures/testers/rule-tester/no-test-global.js index fd8a253bbc3d..b5fa4c3bf929 100644 --- a/tests/fixtures/testers/rule-tester/no-test-global.js +++ b/tests/fixtures/testers/rule-tester/no-test-global.js @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag if the global var `test` is missing; - ** @author Mathias Schreck - **/ + * @fileoverview Test rule to flag if the global var `test` is missing; + * @author Mathias Schreck + */ //------------------------------------------------------------------------------ // Rule Definition @@ -25,4 +25,3 @@ module.exports = function(context) { } }; }; - diff --git a/tests/fixtures/testers/rule-tester/no-test-settings.js b/tests/fixtures/testers/rule-tester/no-test-settings.js index 67d5c41d9a9d..07ecfa7bca6c 100644 --- a/tests/fixtures/testers/rule-tester/no-test-settings.js +++ b/tests/fixtures/testers/rule-tester/no-test-settings.js @@ -1,7 +1,7 @@ /** - ** @fileoverview Test rule to flag if the settings var `test` is missing; - ** @author Ilya Volodin - **/ + * @fileoverview Test rule to flag if the settings var `test` is missing; + * @author Ilya Volodin + */ //------------------------------------------------------------------------------ // Rule Definition @@ -18,4 +18,3 @@ module.exports = function(context) { } }; }; - diff --git a/tests/lib/api.js b/tests/lib/api.js index 208a0cf3241d..f610c251e1a1 100644 --- a/tests/lib/api.js +++ b/tests/lib/api.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for api. * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/cli-engine.js b/tests/lib/cli-engine.js index f2a59b186a8b..3d6cf9e33611 100644 --- a/tests/lib/cli-engine.js +++ b/tests/lib/cli-engine.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for CLIEngine. * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/cli.js b/tests/lib/cli.js index 34360a0dedd0..d1d23da83eb0 100644 --- a/tests/lib/cli.js +++ b/tests/lib/cli.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for cli. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Meyers. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/code-path-analysis/code-path-analyzer.js b/tests/lib/code-path-analysis/code-path-analyzer.js index 312fbc56f371..824b04538382 100644 --- a/tests/lib/code-path-analysis/code-path-analyzer.js +++ b/tests/lib/code-path-analysis/code-path-analyzer.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for CodePathAnalyzer. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/code-path-analysis/code-path.js b/tests/lib/code-path-analysis/code-path.js index a6e00fab2ea3..9cd59bb0f99e 100644 --- a/tests/lib/code-path-analysis/code-path.js +++ b/tests/lib/code-path-analysis/code-path.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for CodePath. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/autoconfig.js b/tests/lib/config/autoconfig.js index 4326c98a4d6a..e91022a437a9 100644 --- a/tests/lib/config/autoconfig.js +++ b/tests/lib/config/autoconfig.js @@ -1,8 +1,6 @@ /** * @fileoverview Used for creating a suggested configuration based on project code. * @author Ian VanSchooten - * @copyright 2015 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/config-file.js b/tests/lib/config/config-file.js index 32e5ee7fc377..142b87ee1d5c 100644 --- a/tests/lib/config/config-file.js +++ b/tests/lib/config/config-file.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for ConfigFile * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/config-ops.js b/tests/lib/config/config-ops.js index ae159cfa18c0..d979867223de 100644 --- a/tests/lib/config/config-ops.js +++ b/tests/lib/config/config-ops.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for ConfigOps * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/config-rule.js b/tests/lib/config/config-rule.js index ebb6177cc105..4721b98171fd 100644 --- a/tests/lib/config/config-rule.js +++ b/tests/lib/config/config-rule.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for ConfigOps * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/config-validator.js b/tests/lib/config/config-validator.js index 3cc73da78b55..548391312b3f 100644 --- a/tests/lib/config/config-validator.js +++ b/tests/lib/config/config-validator.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for config validator. * @author Brandon Mills - * @copyright 2015 Brandon Mills - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/environments.js b/tests/lib/config/environments.js index 5bfde4788afd..b09a349586b6 100644 --- a/tests/lib/config/environments.js +++ b/tests/lib/config/environments.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for Environments * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/config/plugins.js b/tests/lib/config/plugins.js index 6b87d54228e5..16ffdd2f6399 100644 --- a/tests/lib/config/plugins.js +++ b/tests/lib/config/plugins.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for Plugins * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/eslint.js b/tests/lib/eslint.js index a80f0ad1d160..8311d7a7d22a 100644 --- a/tests/lib/eslint.js +++ b/tests/lib/eslint.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for eslint object. * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ /* globals window */ diff --git a/tests/lib/formatters/html.js b/tests/lib/formatters/html.js index ca013f680f98..a028c971c2ec 100644 --- a/tests/lib/formatters/html.js +++ b/tests/lib/formatters/html.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for HTML reporter. * @author Julian Laval - * @copyright 2015 Julian Laval. All rights reserved. */ "use strict"; diff --git a/tests/lib/formatters/json.js b/tests/lib/formatters/json.js index f8222685280e..df0ec0f973b7 100644 --- a/tests/lib/formatters/json.js +++ b/tests/lib/formatters/json.js @@ -1,7 +1,6 @@ /** - * @fileoverview Tests for JSON reporter. + * @fileoverview Tests for JSON reporter. * @author Burak Yigit Kaya aka BYK - * @copyright 2015 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/tests/lib/formatters/table.js b/tests/lib/formatters/table.js index c7fd3a44b221..6700e6bf8ae3 100644 --- a/tests/lib/formatters/table.js +++ b/tests/lib/formatters/table.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for "table" reporter. * @author Gajus Kuizinas - * @copyright 2016 Gajus Kuizinas . All rights reserved. */ "use strict"; diff --git a/tests/lib/formatters/unix.js b/tests/lib/formatters/unix.js index b4288ee2107e..999328dec250 100644 --- a/tests/lib/formatters/unix.js +++ b/tests/lib/formatters/unix.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for unix-style formatter. * @author oshi-shinobu - * @copyright 2015 oshi-shinobu. All rights reserved. */ "use strict"; diff --git a/tests/lib/formatters/visualstudio.js b/tests/lib/formatters/visualstudio.js index e41694616d98..750d0e173362 100644 --- a/tests/lib/formatters/visualstudio.js +++ b/tests/lib/formatters/visualstudio.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for VisualStudio format. * @author Ronald Pijnacker - * @copyright 2015 Ronald Pijnacker. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/options.js b/tests/lib/options.js index e7eaf4a1a042..cafb291af7e5 100644 --- a/tests/lib/options.js +++ b/tests/lib/options.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for options. * @author George Zahariev - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/array-bracket-spacing.js b/tests/lib/rules/array-bracket-spacing.js index 204825ee45fc..017613d27f92 100644 --- a/tests/lib/rules/array-bracket-spacing.js +++ b/tests/lib/rules/array-bracket-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of brackets. * @author Ian Christian Myers - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/array-callback-return.js b/tests/lib/rules/array-callback-return.js index 67806090fef1..8ffb41245aa6 100644 --- a/tests/lib/rules/array-callback-return.js +++ b/tests/lib/rules/array-callback-return.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for array-callback-return rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/arrow-body-style.js b/tests/lib/rules/arrow-body-style.js index c655581abbde..fc19dfe081ce 100644 --- a/tests/lib/rules/arrow-body-style.js +++ b/tests/lib/rules/arrow-body-style.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for arrow-body-style * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/block-scoped-var.js b/tests/lib/rules/block-scoped-var.js index cd8539c0384e..5c9a7f56d637 100644 --- a/tests/lib/rules/block-scoped-var.js +++ b/tests/lib/rules/block-scoped-var.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for block-scoped-var rule * @author Matt DuVall - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/block-spacing.js b/tests/lib/rules/block-spacing.js index 16336a3e945a..4cb693997498 100644 --- a/tests/lib/rules/block-spacing.js +++ b/tests/lib/rules/block-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for block-spacing rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/callback-return.js b/tests/lib/rules/callback-return.js index 92e11c6e52dc..2487cf0c6430 100644 --- a/tests/lib/rules/callback-return.js +++ b/tests/lib/rules/callback-return.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for callback return rule. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/camelcase.js b/tests/lib/rules/camelcase.js index 7ba757976fd8..d6d49d2b08e5 100644 --- a/tests/lib/rules/camelcase.js +++ b/tests/lib/rules/camelcase.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for camelcase rule. * @author Nicholas C. Zakas - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/comma-dangle.js b/tests/lib/rules/comma-dangle.js index 6984f87a2cfd..e93704f2c3c4 100644 --- a/tests/lib/rules/comma-dangle.js +++ b/tests/lib/rules/comma-dangle.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for comma-dangle rule. * @author Ian Christian Myers - * @copyright 2015 Mathias Schreck - * @copyright 2013 Ian Christian Myers */ "use strict"; diff --git a/tests/lib/rules/comma-spacing.js b/tests/lib/rules/comma-spacing.js index 4bdb931ba28b..1afc572febb8 100644 --- a/tests/lib/rules/comma-spacing.js +++ b/tests/lib/rules/comma-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview tests to validate spacing before and after comma. * @author Vignesh Anand. - * @copyright 2014 Vignesh Anand. All rights reserved. - * @copyright 2015 Evan Simmons. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/comma-style.js b/tests/lib/rules/comma-style.js index f47d514cbfee..52a8fff9d549 100644 --- a/tests/lib/rules/comma-style.js +++ b/tests/lib/rules/comma-style.js @@ -1,7 +1,6 @@ /** * @fileoverview Comma style * @author Vignesh Anand aka vegetableman - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/computed-property-spacing.js b/tests/lib/rules/computed-property-spacing.js index 19a822b25141..411c260168a1 100644 --- a/tests/lib/rules/computed-property-spacing.js +++ b/tests/lib/rules/computed-property-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside computed properties. * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/consistent-this.js b/tests/lib/rules/consistent-this.js index 616add29bbb9..7d965a353a5f 100644 --- a/tests/lib/rules/consistent-this.js +++ b/tests/lib/rules/consistent-this.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for consistent-this rule. * @author Raphael Pigulla - * @copyright 2015 Timothy Jones. All rights reserved. - * @copyright 2015 David Aurelio. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/constructor-super.js b/tests/lib/rules/constructor-super.js index 03e367350ee3..55405df68c79 100644 --- a/tests/lib/rules/constructor-super.js +++ b/tests/lib/rules/constructor-super.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for constructor-super rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/dot-location.js b/tests/lib/rules/dot-location.js index ca854f434a3c..cf3abf9f4df1 100644 --- a/tests/lib/rules/dot-location.js +++ b/tests/lib/rules/dot-location.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for dot-location. * @author Greg Cochard - * @copyright 2015 Greg Cochard */ "use strict"; diff --git a/tests/lib/rules/eqeqeq.js b/tests/lib/rules/eqeqeq.js index 1ee84518aa53..c8bce75f312f 100644 --- a/tests/lib/rules/eqeqeq.js +++ b/tests/lib/rules/eqeqeq.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for eqeqeq rule. * @author Nicholas C. Zakas - * @copyright 2013 Matt DuVall. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/func-names.js b/tests/lib/rules/func-names.js index 941b04263abb..b936303c9054 100644 --- a/tests/lib/rules/func-names.js +++ b/tests/lib/rules/func-names.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for func-names rule. * @author Kyle T. Nunery - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2014 Kyle T. Nunery. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/func-style.js b/tests/lib/rules/func-style.js index 740135ad50db..2ff1f1feaa71 100644 --- a/tests/lib/rules/func-style.js +++ b/tests/lib/rules/func-style.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for func-style rule. * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/generator-star-spacing.js b/tests/lib/rules/generator-star-spacing.js index 7c54a041a778..c76b6bd3af97 100644 --- a/tests/lib/rules/generator-star-spacing.js +++ b/tests/lib/rules/generator-star-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for generator-star-spacing rule. * @author Jamund Ferguson - * @copyright 2015 Brandon Mills. All rights reserved. - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/global-require.js b/tests/lib/rules/global-require.js index b74b3739e2af..8ef1a6ef5afd 100644 --- a/tests/lib/rules/global-require.js +++ b/tests/lib/rules/global-require.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for global-require * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/handle-callback-err.js b/tests/lib/rules/handle-callback-err.js index 81e7c3412048..c096a8915728 100644 --- a/tests/lib/rules/handle-callback-err.js +++ b/tests/lib/rules/handle-callback-err.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for missing-err rule. * @author Jamund Ferguson - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/id-length.js b/tests/lib/rules/id-length.js index df31d7728bbc..0836f77223df 100644 --- a/tests/lib/rules/id-length.js +++ b/tests/lib/rules/id-length.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for id-length rule. * @author Burak Yigit Kaya - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/id-match.js b/tests/lib/rules/id-match.js index 8727832aa28f..10883f98c8f3 100644 --- a/tests/lib/rules/id-match.js +++ b/tests/lib/rules/id-match.js @@ -1,7 +1,6 @@ /** * @fileoverview Rule to flag non-matching identifiers * @author Matthieu Larcher - * @copyright 2015 Matthieu Larcher. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/indent.js b/tests/lib/rules/indent.js index 0d4a7b930aff..fb3031e59955 100644 --- a/tests/lib/rules/indent.js +++ b/tests/lib/rules/indent.js @@ -2,8 +2,6 @@ * @fileoverview This option sets a specific tab width for your code * @author Dmitriy Shekhovtsov * @author Gyandeep Singh - * @copyright 2014 Dmitriy Shekhovtsov. All rights reserved. - * @copyright 2015 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/init-declarations.js b/tests/lib/rules/init-declarations.js index cf10a7d1b509..e48c7d9a6213 100644 --- a/tests/lib/rules/init-declarations.js +++ b/tests/lib/rules/init-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview A rule to control the style of variable initializations. * @author Colin Ihrig - * @copyright 2015 Colin Ihrig. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/jsx-quotes.js b/tests/lib/rules/jsx-quotes.js index 66b2a560d439..c5b682b3eb21 100644 --- a/tests/lib/rules/jsx-quotes.js +++ b/tests/lib/rules/jsx-quotes.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for jsx-quotes rule. * @author Mathias Schreck - * @copyright 2015 Mathias Schreck */ "use strict"; diff --git a/tests/lib/rules/key-spacing.js b/tests/lib/rules/key-spacing.js index 1942218d346e..31313d34404b 100644 --- a/tests/lib/rules/key-spacing.js +++ b/tests/lib/rules/key-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for key-spacing rule. * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/keyword-spacing.js b/tests/lib/rules/keyword-spacing.js index c9bde692b9e8..5b2a11923d03 100644 --- a/tests/lib/rules/keyword-spacing.js +++ b/tests/lib/rules/keyword-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for keyword-spacing rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/linebreak-style.js b/tests/lib/rules/linebreak-style.js index 69369cdaef1e..c0ab31e56d5e 100644 --- a/tests/lib/rules/linebreak-style.js +++ b/tests/lib/rules/linebreak-style.js @@ -1,9 +1,6 @@ /** * @fileoverview No mixed linebreaks * @author Erik Mueller - * @copyright 2015 Varun Verma. All rights reserverd. - * @copyright 2015 James Whitney. All rights reserved. - * @copyright 2015 Erik Mueller. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/lines-around-comment.js b/tests/lib/rules/lines-around-comment.js index e5e4aa457594..fc633329ec92 100644 --- a/tests/lib/rules/lines-around-comment.js +++ b/tests/lib/rules/lines-around-comment.js @@ -1,8 +1,6 @@ /** * @fileoverview Test enforcement of lines around comments. * @author Jamund Ferguson - * @copyright 2015 Mathieu M-Gosselin. All rights reserved. - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/max-depth.js b/tests/lib/rules/max-depth.js index 5c9c7a70939c..361320e3ac92 100644 --- a/tests/lib/rules/max-depth.js +++ b/tests/lib/rules/max-depth.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for max-depth. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/max-nested-callbacks.js b/tests/lib/rules/max-nested-callbacks.js index 35f73efa7e87..399de687e8af 100644 --- a/tests/lib/rules/max-nested-callbacks.js +++ b/tests/lib/rules/max-nested-callbacks.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for max-nested-callbacks rule. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/max-params.js b/tests/lib/rules/max-params.js index 6796a22a4f95..929d045d81b2 100644 --- a/tests/lib/rules/max-params.js +++ b/tests/lib/rules/max-params.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for max-params rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/max-statements-per-line.js b/tests/lib/rules/max-statements-per-line.js index 1b05391f40f9..add543ec7811 100644 --- a/tests/lib/rules/max-statements-per-line.js +++ b/tests/lib/rules/max-statements-per-line.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for max-statements-per-line rule. * @author Kenneth Williams - * @copyright 2016 Kenneth Williams. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/max-statements.js b/tests/lib/rules/max-statements.js index eca4b360a27e..da0fa530ebeb 100644 --- a/tests/lib/rules/max-statements.js +++ b/tests/lib/rules/max-statements.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for max-statements rule. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/newline-after-var.js b/tests/lib/rules/newline-after-var.js index 3029b0083390..1b3781acb7e9 100644 --- a/tests/lib/rules/newline-after-var.js +++ b/tests/lib/rules/newline-after-var.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for newline-after-var rule. * @author Gopal Venkatesan - * @copyright 2015 Gopal Venkatesan. All rights reserved. - * @copyright 2015 Casey Visco. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/newline-before-return.js b/tests/lib/rules/newline-before-return.js index 70fc6589bdc8..ccfb622dfb35 100644 --- a/tests/lib/rules/newline-before-return.js +++ b/tests/lib/rules/newline-before-return.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for require newline before `return` statement * @author Kai Cataldo - * @copyright 2016 Kai Cataldo. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/newline-per-chained-call.js b/tests/lib/rules/newline-per-chained-call.js index 085140c1e7c4..ac795b1a3c91 100644 --- a/tests/lib/rules/newline-per-chained-call.js +++ b/tests/lib/rules/newline-per-chained-call.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for newline-per-chained-call rule. * @author Rajendra Patil - * @copyright 2016 Rajendra Patil. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-alert.js b/tests/lib/rules/no-alert.js index eef25ddc5ef4..87f907e38326 100644 --- a/tests/lib/rules/no-alert.js +++ b/tests/lib/rules/no-alert.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-alert rule. * @author Nicholas C. Zakas - * @copyright 2015 Mathias Schreck - * @copyright 2013 Nicholas C. Zakas */ "use strict"; diff --git a/tests/lib/rules/no-case-declarations.js b/tests/lib/rules/no-case-declarations.js index d6a6df9a9656..0fe0061ea407 100644 --- a/tests/lib/rules/no-case-declarations.js +++ b/tests/lib/rules/no-case-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-case-declarations rule. * @author Erik Arvidsson - * @copyright 2015 Erik Arvidsson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-class-assign.js b/tests/lib/rules/no-class-assign.js index 4d56d97716b0..486db747f021 100644 --- a/tests/lib/rules/no-class-assign.js +++ b/tests/lib/rules/no-class-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-class-assign rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-confusing-arrow.js b/tests/lib/rules/no-confusing-arrow.js index 049d55a853a4..73aea206cacb 100644 --- a/tests/lib/rules/no-confusing-arrow.js +++ b/tests/lib/rules/no-confusing-arrow.js @@ -1,28 +1,6 @@ /** * @fileoverview Tests for no-confusing-arrow rule. * @author Jxck - * @copyright 2015 Luke Karrys. All rights reserved. - * The MIT License (MIT) - - * Copyright (c) 2015 Jxck - - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - - * The above copyright notice and this permission notice shall be included in all - * copies or substantial portions of the Software. - - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. */ "use strict"; diff --git a/tests/lib/rules/no-console.js b/tests/lib/rules/no-console.js index 2b95470376a9..0003b34a388f 100644 --- a/tests/lib/rules/no-console.js +++ b/tests/lib/rules/no-console.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-console rule. * @author Nicholas C. Zakas - * @copyright 2016 Eric Correia. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-const-assign.js b/tests/lib/rules/no-const-assign.js index 8fa76713903e..b35f1ac47f59 100644 --- a/tests/lib/rules/no-const-assign.js +++ b/tests/lib/rules/no-const-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-const-assign rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-constant-condition.js b/tests/lib/rules/no-constant-condition.js index e69021d576df..da68023ceadf 100644 --- a/tests/lib/rules/no-constant-condition.js +++ b/tests/lib/rules/no-constant-condition.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-constant-condition rule. * @author Christian Schulz - * @copyright 2014 Christian Schulz. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-continue.js b/tests/lib/rules/no-continue.js index bad464ca5606..d222499e5ac2 100644 --- a/tests/lib/rules/no-continue.js +++ b/tests/lib/rules/no-continue.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-continue rule. * @author Borislav Zhivkov - * @copyright 2015 Borislav Zhivkov. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-dupe-args.js b/tests/lib/rules/no-dupe-args.js index 331d0d80565d..8952b90d221a 100644 --- a/tests/lib/rules/no-dupe-args.js +++ b/tests/lib/rules/no-dupe-args.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-dupe-args * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-dupe-class-members.js b/tests/lib/rules/no-dupe-class-members.js index 2763bd1d5cff..6ebf9b322c95 100644 --- a/tests/lib/rules/no-dupe-class-members.js +++ b/tests/lib/rules/no-dupe-class-members.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-dupe-class-members rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-dupe-keys.js b/tests/lib/rules/no-dupe-keys.js index f95e40d657f2..eadde00bdd6d 100644 --- a/tests/lib/rules/no-dupe-keys.js +++ b/tests/lib/rules/no-dupe-keys.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-dupe-keys rule. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. - * @copyright 2013 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-duplicate-case.js b/tests/lib/rules/no-duplicate-case.js index 96f876a1ede3..dc963e024504 100644 --- a/tests/lib/rules/no-duplicate-case.js +++ b/tests/lib/rules/no-duplicate-case.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-duplicate-case rule. * @author Dieter Oberkofler - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-duplicate-imports.js b/tests/lib/rules/no-duplicate-imports.js index a1e750ae615a..c12408e2cc32 100644 --- a/tests/lib/rules/no-duplicate-imports.js +++ b/tests/lib/rules/no-duplicate-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-duplicate-imports. * @author Simen Bekkhus - * @copyright 2016 Simen Bekkhus. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-empty-function.js b/tests/lib/rules/no-empty-function.js index 3f4acd771541..445181b6c6da 100644 --- a/tests/lib/rules/no-empty-function.js +++ b/tests/lib/rules/no-empty-function.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-empty-function rule. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-empty-pattern.js b/tests/lib/rules/no-empty-pattern.js index addce2fad494..8c919dfec857 100644 --- a/tests/lib/rules/no-empty-pattern.js +++ b/tests/lib/rules/no-empty-pattern.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-empty-pattern rule. * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-empty.js b/tests/lib/rules/no-empty.js index 1bbdb83b5d1e..c1c96d77b455 100644 --- a/tests/lib/rules/no-empty.js +++ b/tests/lib/rules/no-empty.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-empty rule. * @author Nicholas C. Zakas - * @copyright Nicholas C. Zakas. All rights reserved. - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-eval.js b/tests/lib/rules/no-eval.js index 473547c32b9f..ea2a67e9c021 100644 --- a/tests/lib/rules/no-eval.js +++ b/tests/lib/rules/no-eval.js @@ -1,9 +1,6 @@ /** * @fileoverview Tests for no-eval rule. * @author Nicholas C. Zakas - * @copyright 2015 Toru Nagashima. All rights reserved. - * @copyright 2013 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-extra-bind.js b/tests/lib/rules/no-extra-bind.js index eebf956466ba..6a5f1285adf6 100644 --- a/tests/lib/rules/no-extra-bind.js +++ b/tests/lib/rules/no-extra-bind.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-extra-bind rule * @author Bence Dányi - * @copyright 2014 Bence Dányi. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-extra-label.js b/tests/lib/rules/no-extra-label.js index 294d3783a3b5..b6bc6a0fa509 100644 --- a/tests/lib/rules/no-extra-label.js +++ b/tests/lib/rules/no-extra-label.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-extra-label rule. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-extra-parens.js b/tests/lib/rules/no-extra-parens.js index 2d748ca86a0f..be8af5535781 100644 --- a/tests/lib/rules/no-extra-parens.js +++ b/tests/lib/rules/no-extra-parens.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallow parenthesesisng higher precedence subexpressions. * @author Michael Ficarra - * @copyright 2014 Michael Ficarra. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-func-assign.js b/tests/lib/rules/no-func-assign.js index aa3a1bd68fa7..f57e79195087 100644 --- a/tests/lib/rules/no-func-assign.js +++ b/tests/lib/rules/no-func-assign.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-func-assign. * @author Ian Christian Myers - * @copyright 2013 Ian Christian Myers. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-implicit-coercion.js b/tests/lib/rules/no-implicit-coercion.js index 0c5493059025..d560bcca276a 100644 --- a/tests/lib/rules/no-implicit-coercion.js +++ b/tests/lib/rules/no-implicit-coercion.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-implicit-coercion rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-implicit-globals.js b/tests/lib/rules/no-implicit-globals.js index 50d5e4fe3314..899ae10fb19d 100644 --- a/tests/lib/rules/no-implicit-globals.js +++ b/tests/lib/rules/no-implicit-globals.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-implicit-globals rule. * @author Joshua Peek - * @copyright 2015 Joshua Peek. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-inline-comments.js b/tests/lib/rules/no-inline-comments.js index 6e96c5667a2c..7e4e13890e40 100644 --- a/tests/lib/rules/no-inline-comments.js +++ b/tests/lib/rules/no-inline-comments.js @@ -1,7 +1,6 @@ /** * @fileoverview Test enforcement of no inline comments rule. * @author Greg Cochard - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-inner-declarations.js b/tests/lib/rules/no-inner-declarations.js index 5ad9ab3fafae..831dfe131c22 100644 --- a/tests/lib/rules/no-inner-declarations.js +++ b/tests/lib/rules/no-inner-declarations.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-inner-declarations rule. * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-invalid-this.js b/tests/lib/rules/no-invalid-this.js index a07d6a9cc1d7..8f563a9f08ca 100644 --- a/tests/lib/rules/no-invalid-this.js +++ b/tests/lib/rules/no-invalid-this.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-invalid-this rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-irregular-whitespace.js b/tests/lib/rules/no-irregular-whitespace.js index b58068901121..b0d0ffb144eb 100644 --- a/tests/lib/rules/no-irregular-whitespace.js +++ b/tests/lib/rules/no-irregular-whitespace.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-irregular-whitespace rule. * @author Jonathan Kingston - * @copyright 2014 Jonathan Kingston. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-labels.js b/tests/lib/rules/no-labels.js index 29a4a344f9f2..ab0e957c5088 100644 --- a/tests/lib/rules/no-labels.js +++ b/tests/lib/rules/no-labels.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallow Labeled Statements * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-loop-func.js b/tests/lib/rules/no-loop-func.js index f2b1fe14922c..ac2555ed770d 100644 --- a/tests/lib/rules/no-loop-func.js +++ b/tests/lib/rules/no-loop-func.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-loop-func rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-magic-numbers.js b/tests/lib/rules/no-magic-numbers.js index f7b181719892..1fd861b35ec7 100644 --- a/tests/lib/rules/no-magic-numbers.js +++ b/tests/lib/rules/no-magic-numbers.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-magic-numbers rule. * @author Vincent Lemeunier - * @copyright 2015 Vincent Lemeunier. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-multi-spaces.js b/tests/lib/rules/no-multi-spaces.js index faac0ade6991..d83f13702a5f 100644 --- a/tests/lib/rules/no-multi-spaces.js +++ b/tests/lib/rules/no-multi-spaces.js @@ -1,7 +1,6 @@ /** * @fileoverview tests for checking multiple spaces. * @author Vignesh Anand aka vegetableman - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-multiple-empty-lines.js b/tests/lib/rules/no-multiple-empty-lines.js index 6fb526fbb335..37c8748e76cf 100644 --- a/tests/lib/rules/no-multiple-empty-lines.js +++ b/tests/lib/rules/no-multiple-empty-lines.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallows multiple blank lines. * @author Greg Cochard - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-negated-condition.js b/tests/lib/rules/no-negated-condition.js index 59dc20211299..cb3ebb9b6edf 100644 --- a/tests/lib/rules/no-negated-condition.js +++ b/tests/lib/rules/no-negated-condition.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-negated-condition rule. * @author Alberto Rodríguez - * @copyright 2015 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-new-symbol.js b/tests/lib/rules/no-new-symbol.js index a0f13e84d3fe..ad4acba27b5b 100644 --- a/tests/lib/rules/no-new-symbol.js +++ b/tests/lib/rules/no-new-symbol.js @@ -1,9 +1,6 @@ /** * @fileoverview Tests for the no-new-symbol rule * @author Alberto Rodríguez - * @copyright 2016 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. - */ "use strict"; diff --git a/tests/lib/rules/no-param-reassign.js b/tests/lib/rules/no-param-reassign.js index 2e8a1df4d995..d69350690b01 100644 --- a/tests/lib/rules/no-param-reassign.js +++ b/tests/lib/rules/no-param-reassign.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow reassignment of function parameters. * @author Nat Burns - * @copyright 2014 Nat Burns. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-process-env.js b/tests/lib/rules/no-process-env.js index 4c59736e58cf..368e3334ade4 100644 --- a/tests/lib/rules/no-process-env.js +++ b/tests/lib/rules/no-process-env.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-process-env rule. * @author Vignesh Anand - * @copyright 2014 Vignesh Anand. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-restricted-globals.js b/tests/lib/rules/no-restricted-globals.js index d8ac2e0f33b6..13692da0d487 100644 --- a/tests/lib/rules/no-restricted-globals.js +++ b/tests/lib/rules/no-restricted-globals.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-restricted-globals. * @author Benoît Zugmeyer - * @copyright 2016 Benoît Zugmeyer. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-restricted-imports.js b/tests/lib/rules/no-restricted-imports.js index 5034a721d017..f282c80e66c8 100644 --- a/tests/lib/rules/no-restricted-imports.js +++ b/tests/lib/rules/no-restricted-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-restricted-imports. * @author Guy Ellis - * @copyright 2015 Guy Ellis. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-restricted-syntax.js b/tests/lib/rules/no-restricted-syntax.js index 08a0e1897b6b..2a8b3f3e66cf 100644 --- a/tests/lib/rules/no-restricted-syntax.js +++ b/tests/lib/rules/no-restricted-syntax.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for `no-restricted-syntax` rule * @author Burak Yigit Kaya - * @copyright 2015 Burak Yigit Kaya. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-self-assign.js b/tests/lib/rules/no-self-assign.js index 5f5f6b7ec69b..4ae68d4a4884 100644 --- a/tests/lib/rules/no-self-assign.js +++ b/tests/lib/rules/no-self-assign.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-self-assign rule. * @author Toru Nagashima - * @copyright 2065 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-shadow-restricted-names.js b/tests/lib/rules/no-shadow-restricted-names.js index 5b40b685ad23..a3beb5510d10 100644 --- a/tests/lib/rules/no-shadow-restricted-names.js +++ b/tests/lib/rules/no-shadow-restricted-names.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow shadowing of NaN, undefined, and Infinity (ES5 section 15.1.1) * @author Michael Ficarra - * @copyright 2013 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-shadow.js b/tests/lib/rules/no-shadow.js index 93fa69b42676..72aafcb83fd3 100644 --- a/tests/lib/rules/no-shadow.js +++ b/tests/lib/rules/no-shadow.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-shadow rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-this-before-super.js b/tests/lib/rules/no-this-before-super.js index 10e62e4e16c9..7dfc5b327ab1 100644 --- a/tests/lib/rules/no-this-before-super.js +++ b/tests/lib/rules/no-this-before-super.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-this-before-super rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-throw-literal.js b/tests/lib/rules/no-throw-literal.js index e56a92e5a5d5..4df6758e8123 100644 --- a/tests/lib/rules/no-throw-literal.js +++ b/tests/lib/rules/no-throw-literal.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-throw-literal rule. * @author Dieter Oberkofler - * @copyright 2015 Dieter Oberkofler. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-trailing-spaces.js b/tests/lib/rules/no-trailing-spaces.js index 3b771bc17467..21c11a90f74d 100644 --- a/tests/lib/rules/no-trailing-spaces.js +++ b/tests/lib/rules/no-trailing-spaces.js @@ -1,7 +1,6 @@ /** * @fileoverview Disallow trailing spaces at the end of lines. * @author Nodeca Team - * @copyright 2015 Patrick McElhaney */ "use strict"; diff --git a/tests/lib/rules/no-undef-init.js b/tests/lib/rules/no-undef-init.js index 321eec32c4c9..c300e7c01978 100644 --- a/tests/lib/rules/no-undef-init.js +++ b/tests/lib/rules/no-undef-init.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for undefined rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-unmodified-loop-condition.js b/tests/lib/rules/no-unmodified-loop-condition.js index 3f9618366074..19128496cbeb 100644 --- a/tests/lib/rules/no-unmodified-loop-condition.js +++ b/tests/lib/rules/no-unmodified-loop-condition.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-unmodified-loop-condition rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-unused-expressions.js b/tests/lib/rules/no-unused-expressions.js index bd92a5d98937..13204679d147 100644 --- a/tests/lib/rules/no-unused-expressions.js +++ b/tests/lib/rules/no-unused-expressions.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-unused-expressions rule. * @author Michael Ficarra - * @copyright 2013 Michael Ficarra. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-unused-labels.js b/tests/lib/rules/no-unused-labels.js index d2cd3015cbaa..a19a2a346c68 100644 --- a/tests/lib/rules/no-unused-labels.js +++ b/tests/lib/rules/no-unused-labels.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for no-unused-labels rule. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-use-before-define.js b/tests/lib/rules/no-use-before-define.js index 62eef6a5200e..c78e50112ebc 100644 --- a/tests/lib/rules/no-use-before-define.js +++ b/tests/lib/rules/no-use-before-define.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-use-before-define rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-useless-call.js b/tests/lib/rules/no-useless-call.js index bce7145bc143..18707034e39f 100644 --- a/tests/lib/rules/no-useless-call.js +++ b/tests/lib/rules/no-useless-call.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-useless-call rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-useless-concat.js b/tests/lib/rules/no-useless-concat.js index 929ff8657855..c144cd708ce2 100644 --- a/tests/lib/rules/no-useless-concat.js +++ b/tests/lib/rules/no-useless-concat.js @@ -1,8 +1,6 @@ /** * @fileoverview disallow unncessary concatenation of literals or template literals * @author Henry Zhu - * @copyright 2015 Henry Zhu. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/no-useless-constructor.js b/tests/lib/rules/no-useless-constructor.js index 9fd1a504953b..6535b1a3cdce 100644 --- a/tests/lib/rules/no-useless-constructor.js +++ b/tests/lib/rules/no-useless-constructor.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-useless-constructor rule. * @author Alberto Rodriguez - * @copyright 2015 Alberto Rodriguez. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-useless-escape.js b/tests/lib/rules/no-useless-escape.js index 4a9d48af8034..9305bd80fb92 100644 --- a/tests/lib/rules/no-useless-escape.js +++ b/tests/lib/rules/no-useless-escape.js @@ -1,7 +1,6 @@ /** * @fileoverview Look for useless escapes in strings and regexes * @author Onur Temizkan - * @copyright 2016 Onur Temizkan. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-var.js b/tests/lib/rules/no-var.js index b07def20a2c6..8b47c31f37a1 100644 --- a/tests/lib/rules/no-var.js +++ b/tests/lib/rules/no-var.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for no-var rule. * @author Jamund Ferguson - * @copyright 2014 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/no-whitespace-before-property.js b/tests/lib/rules/no-whitespace-before-property.js index e02f81b620cc..4bbfd69e090d 100644 --- a/tests/lib/rules/no-whitespace-before-property.js +++ b/tests/lib/rules/no-whitespace-before-property.js @@ -1,8 +1,6 @@ /** * @fileoverview Rule to disallow whitespace before properties * @author Kai Cataldo - * @copyright 2015 Kai Cataldo. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/object-curly-spacing.js b/tests/lib/rules/object-curly-spacing.js index 7f00a156ad11..1c78e172f1e3 100644 --- a/tests/lib/rules/object-curly-spacing.js +++ b/tests/lib/rules/object-curly-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of object literals. * @author Jamund Ferguson - * @copyright 2014 Vignesh Anand. All rights reserved. - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/object-shorthand.js b/tests/lib/rules/object-shorthand.js index a6aa04f20012..bbaf51f114b8 100644 --- a/tests/lib/rules/object-shorthand.js +++ b/tests/lib/rules/object-shorthand.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for concise-object rule * @author Jamund Ferguson - * @copyright 2015 Jamund Ferguson. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/one-var-declaration-per-line.js b/tests/lib/rules/one-var-declaration-per-line.js index dbc19b6b8317..bebbbae17ebb 100644 --- a/tests/lib/rules/one-var-declaration-per-line.js +++ b/tests/lib/rules/one-var-declaration-per-line.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for one-var-declaration-per-line rule. * @author Alberto Rodríguez - * @copyright 2016 Alberto Rodríguez. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/one-var.js b/tests/lib/rules/one-var.js index de772c32f702..04a18c73fe8a 100644 --- a/tests/lib/rules/one-var.js +++ b/tests/lib/rules/one-var.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for one-var. * @author Ian Christian Myers and Michael Paulukonis - * @copyright 2013 Ian Christian Myers. All rights reserved. - * @copyright 2013 Michael Paulukonis. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/operator-assignment.js b/tests/lib/rules/operator-assignment.js index 4b0177608c05..9c262803b507 100644 --- a/tests/lib/rules/operator-assignment.js +++ b/tests/lib/rules/operator-assignment.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for operator-assignment rule. * @author Brandon Mills - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/operator-linebreak.js b/tests/lib/rules/operator-linebreak.js index ff08f7d494df..c5066fb900fc 100644 --- a/tests/lib/rules/operator-linebreak.js +++ b/tests/lib/rules/operator-linebreak.js @@ -1,7 +1,6 @@ /** * @fileoverview Operator linebreak rule tests * @author Benoît Zugmeyer - * @copyright 2015 Benoît Zugmeyer. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/padded-blocks.js b/tests/lib/rules/padded-blocks.js index 446c1b33b1cf..483059213553 100644 --- a/tests/lib/rules/padded-blocks.js +++ b/tests/lib/rules/padded-blocks.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for padded-blocks rule. * @author Mathias Schreck - * @copyright 2014 Mathias Schreck. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/prefer-arrow-callback.js b/tests/lib/rules/prefer-arrow-callback.js index 2e76e652334a..fa9b90e08511 100644 --- a/tests/lib/rules/prefer-arrow-callback.js +++ b/tests/lib/rules/prefer-arrow-callback.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for prefer-arrow-callback rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/prefer-const.js b/tests/lib/rules/prefer-const.js index 730e521b4ef7..37d007f88450 100644 --- a/tests/lib/rules/prefer-const.js +++ b/tests/lib/rules/prefer-const.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for prefer-const rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/prefer-rest-params.js b/tests/lib/rules/prefer-rest-params.js index ca98181c3688..79eb95d87e33 100644 --- a/tests/lib/rules/prefer-rest-params.js +++ b/tests/lib/rules/prefer-rest-params.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for prefer-rest-params rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/prefer-spread.js b/tests/lib/rules/prefer-spread.js index 1c71f5cd49e2..745efd11c79c 100644 --- a/tests/lib/rules/prefer-spread.js +++ b/tests/lib/rules/prefer-spread.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for prefer-spread rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/prefer-template.js b/tests/lib/rules/prefer-template.js index 18da86383f06..0574b5f25ff6 100644 --- a/tests/lib/rules/prefer-template.js +++ b/tests/lib/rules/prefer-template.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for prefer-template rule. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/quote-props.js b/tests/lib/rules/quote-props.js index ce68039d704a..ac7f0b753ae3 100644 --- a/tests/lib/rules/quote-props.js +++ b/tests/lib/rules/quote-props.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for quote-props rule. * @author Mathias Bynens - * @copyright 2015 Tomasz Olędzki. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/quotes.js b/tests/lib/rules/quotes.js index 9ecb0ae2b208..6bd75dd09901 100644 --- a/tests/lib/rules/quotes.js +++ b/tests/lib/rules/quotes.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for quotes rule. * @author Matt DuVall , Michael Paulukonis - * @copyright 2013 Matt DuVall. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/require-jsdoc.js b/tests/lib/rules/require-jsdoc.js index 7e5ebea80e83..fc797306468a 100644 --- a/tests/lib/rules/require-jsdoc.js +++ b/tests/lib/rules/require-jsdoc.js @@ -1,7 +1,6 @@ /** * @fileoverview Test file for require-jsdoc rule * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/require-yield.js b/tests/lib/rules/require-yield.js index aedd08b1b383..234efaf61ea1 100644 --- a/tests/lib/rules/require-yield.js +++ b/tests/lib/rules/require-yield.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for require-yield rule * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/semi-spacing.js b/tests/lib/rules/semi-spacing.js index e65881ee0c31..e30e7fd77e0c 100644 --- a/tests/lib/rules/semi-spacing.js +++ b/tests/lib/rules/semi-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for semi-spacing. * @author Mathias Schreck - * @copyright 2015 Mathias Schreck */ "use strict"; diff --git a/tests/lib/rules/semi.js b/tests/lib/rules/semi.js index e655aac132d8..4b58332a0bd8 100644 --- a/tests/lib/rules/semi.js +++ b/tests/lib/rules/semi.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for semi rule. * @author Nicholas C. Zakas - * @copyright 2013 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/sort-imports.js b/tests/lib/rules/sort-imports.js index 477d613532be..c0fbca29b155 100644 --- a/tests/lib/rules/sort-imports.js +++ b/tests/lib/rules/sort-imports.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for sort-imports rule. * @author Christian Schuller - * @copyright 2015 Christian Schuller. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/space-before-blocks.js b/tests/lib/rules/space-before-blocks.js index 87066ad72258..182c78a5bb8a 100644 --- a/tests/lib/rules/space-before-blocks.js +++ b/tests/lib/rules/space-before-blocks.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for space-before-block rule. * @author Mathias Schreck - * @copyright 2014 Mathias Schreck. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/space-before-function-paren.js b/tests/lib/rules/space-before-function-paren.js index e01ef259100d..28b6fabbd4d1 100644 --- a/tests/lib/rules/space-before-function-paren.js +++ b/tests/lib/rules/space-before-function-paren.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for space-before-function-paren. * @author Mathias Schreck - * @copyright 2015 Mathias Schreck */ "use strict"; diff --git a/tests/lib/rules/space-in-parens.js b/tests/lib/rules/space-in-parens.js index dc6b6450157f..b9088b168d20 100644 --- a/tests/lib/rules/space-in-parens.js +++ b/tests/lib/rules/space-in-parens.js @@ -1,8 +1,6 @@ /** * @fileoverview Disallows or enforces spaces inside of parentheses. * @author Jonathan Rajavuori - * @copyright 2014 David Clark. All rights reserved. - * @copyright 2014 Jonathan Rajavuori. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/space-unary-ops.js b/tests/lib/rules/space-unary-ops.js index 71739ff49197..435def39599e 100644 --- a/tests/lib/rules/space-unary-ops.js +++ b/tests/lib/rules/space-unary-ops.js @@ -1,7 +1,6 @@ /** * @fileoverview This rule shoud require or disallow spaces before or after unary operations. * @author Marcin Kumorek - * @copyright 2014 Marcin Kumorek. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/spaced-comment.js b/tests/lib/rules/spaced-comment.js index acf4eed889c6..8e0214cc16df 100644 --- a/tests/lib/rules/spaced-comment.js +++ b/tests/lib/rules/spaced-comment.js @@ -1,8 +1,6 @@ /** * @fileoverview Test for spaced-comments * @author Gyandeep Singh - * @copyright 2015 Gyandeep Singh. All rights reserved. - * @copyright 2014 Greg Cochard. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/strict.js b/tests/lib/rules/strict.js index f67f532721ab..75a36dd4ab83 100644 --- a/tests/lib/rules/strict.js +++ b/tests/lib/rules/strict.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for strict rule. * @author Nicholas C. Zakas - * @copyright 2013-2014 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/template-curly-spacing.js b/tests/lib/rules/template-curly-spacing.js index da11787de65d..facd02a5578b 100644 --- a/tests/lib/rules/template-curly-spacing.js +++ b/tests/lib/rules/template-curly-spacing.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for template-curly-spacing rule. * @author Toru Nagashima - * @copyright 2016 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/rules/valid-jsdoc.js b/tests/lib/rules/valid-jsdoc.js index a92327ed73d2..bd9b2bf18fdd 100644 --- a/tests/lib/rules/valid-jsdoc.js +++ b/tests/lib/rules/valid-jsdoc.js @@ -1,7 +1,6 @@ /** * @fileoverview Validates JSDoc comments are syntactically correct * @author Nicholas C. Zakas - * @copyright 2014 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/vars-on-top.js b/tests/lib/rules/vars-on-top.js index b26000e02dbf..2bd0b2e54fb4 100644 --- a/tests/lib/rules/vars-on-top.js +++ b/tests/lib/rules/vars-on-top.js @@ -2,8 +2,6 @@ * @fileoverview Tests for vars-on-top rule. * @author Danny Fritz * @author Gyandeep Singh - * @copyright 2014 Danny Fritz. All rights reserved. - * @copyright 2014 Gyandeep Singh. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/wrap-iife.js b/tests/lib/rules/wrap-iife.js index c6b6c6b03307..4066686f5d04 100644 --- a/tests/lib/rules/wrap-iife.js +++ b/tests/lib/rules/wrap-iife.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for wrap-iife rule. * @author Ilya Volodin - * @copyright 2013 Ilya Volodin. All rights reserved. */ "use strict"; diff --git a/tests/lib/rules/yield-star-spacing.js b/tests/lib/rules/yield-star-spacing.js index e64861bfe8fa..eb5fe31f5e24 100644 --- a/tests/lib/rules/yield-star-spacing.js +++ b/tests/lib/rules/yield-star-spacing.js @@ -1,7 +1,6 @@ /** * @fileoverview Tests for yield-star-spacing rule. * @author Bryan Smith - * @copyright 2015 Bryan Smith. All rights reserved. */ "use strict"; diff --git a/tests/lib/testers/rule-tester.js b/tests/lib/testers/rule-tester.js index 4c8c09144c47..0470dfa8dd4c 100644 --- a/tests/lib/testers/rule-tester.js +++ b/tests/lib/testers/rule-tester.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for ESLint Tester * @author Nicholas C. Zakas - * @Copyright 2015 Kevin Partington. All rights reserved. - * @copyright 2015 Nicholas C. Zakas. All rights reserved. */ "use strict"; diff --git a/tests/lib/token-store.js b/tests/lib/token-store.js index e18501a0f10c..120c16af7414 100644 --- a/tests/lib/token-store.js +++ b/tests/lib/token-store.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for TokenStore class. * @author Brandon Mills - * @copyright 2014 Nicholas C. Zakas. All rights reserved. - * @copyright 2014 Brandon Mills. All rights reserved. */ "use strict"; diff --git a/tests/lib/util/comment-event-generator.js b/tests/lib/util/comment-event-generator.js index 770f8789c41b..4c400197f87e 100644 --- a/tests/lib/util/comment-event-generator.js +++ b/tests/lib/util/comment-event-generator.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for CommentEventGenerator. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/glob-util.js b/tests/lib/util/glob-util.js index 9f36ffab8d1b..fff148f887fc 100644 --- a/tests/lib/util/glob-util.js +++ b/tests/lib/util/glob-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Utilities for working with globs and the filesystem. * @author Ian VanSchooten - * @copyright 2015 Ian VanSchooten. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/module-resolver.js b/tests/lib/util/module-resolver.js index 58cec2aee5f3..bd036508900c 100644 --- a/tests/lib/util/module-resolver.js +++ b/tests/lib/util/module-resolver.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for ModuleResolver * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/node-event-generator.js b/tests/lib/util/node-event-generator.js index 5fa5baf98a09..7e6061a42be7 100644 --- a/tests/lib/util/node-event-generator.js +++ b/tests/lib/util/node-event-generator.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for NodeEventGenerator. * @author Toru Nagashima - * @copyright 2015 Toru Nagashima. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/npm-util.js b/tests/lib/util/npm-util.js index 941fc951acd0..b9c1d861a7f4 100644 --- a/tests/lib/util/npm-util.js +++ b/tests/lib/util/npm-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for rule fixer. * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/path-util.js b/tests/lib/util/path-util.js index def9b563db1c..edebce77e328 100644 --- a/tests/lib/util/path-util.js +++ b/tests/lib/util/path-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Common helpers for operations on filenames and paths * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/rule-fixer.js b/tests/lib/util/rule-fixer.js index 878e2de76ec9..20a5861f2f04 100644 --- a/tests/lib/util/rule-fixer.js +++ b/tests/lib/util/rule-fixer.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for rule fixer. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/source-code-fixer.js b/tests/lib/util/source-code-fixer.js index e2f055fbd31a..6e0679fb3d0e 100644 --- a/tests/lib/util/source-code-fixer.js +++ b/tests/lib/util/source-code-fixer.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for SourceCodeFixer. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/source-code-util.js b/tests/lib/util/source-code-util.js index b949364534b6..b83688a0c33e 100644 --- a/tests/lib/util/source-code-util.js +++ b/tests/lib/util/source-code-util.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for source-code-util. * @author Ian VanSchooten - * @copyright 2016 Ian VanSchooten. All rights reserved. - * See LICENSE in root directory for full license. */ "use strict"; diff --git a/tests/lib/util/source-code.js b/tests/lib/util/source-code.js index 60ba6e8cdef7..645087cd17f1 100644 --- a/tests/lib/util/source-code.js +++ b/tests/lib/util/source-code.js @@ -1,8 +1,6 @@ /** * @fileoverview Abstraction of JavaScript source code. * @author Nicholas C. Zakas - * @copyright 2015 Nicholas C. Zakas. All rights reserved. - * See LICENSE file in root directory for full license. */ "use strict"; diff --git a/tests/templates/pr-create.md.ejs.js b/tests/templates/pr-create.md.ejs.js index d9671d3df085..3667629e420f 100644 --- a/tests/templates/pr-create.md.ejs.js +++ b/tests/templates/pr-create.md.ejs.js @@ -1,8 +1,6 @@ /** * @fileoverview Tests for pr-create.md.ejs * @author Nicholas C. Zakas - * @copyright 2016 Nicholas C. Zakas. All rights reserved. - * MIT License. See LICENSE in root directory for full license. */ "use strict";