Skip to content

Commit

Permalink
Chore: Include jQuery Foundation info
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Apr 19, 2016
1 parent 84faa07 commit df53414
Show file tree
Hide file tree
Showing 20 changed files with 43 additions and 88 deletions.
64 changes: 0 additions & 64 deletions CODE_OF_CONDUCT.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
ESLint ESLint
Copyright (c) 2013 Nicholas C. Zakas. All rights reserved. Copyright jQuery Foundation and other contributors, https://jquery.org/


Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions Makefile.js
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,10 @@
/** /**
* @fileoverview Build file * @fileoverview Build file
* @author nzakas * @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*/ /* global cat, cd, cp, echo, exec, exit, find, ls, mkdir, pwd, rm, target, test*/
/* eslint no-use-before-define: 0*/ /* eslint no-use-before-define: 0*/
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


# ESLint # ESLint


[Website](http://eslint.org) | [Configuring](http://eslint.org/docs/user-guide/configuring) | [Rules](http://eslint.org/docs/rules/) | [Contributing](http://eslint.org/docs/developer-guide/contributing) | [Reporting Bugs](http://eslint.org/docs/developer-guide/contributing/reporting-bugs) | [Twitter](https://twitter.com/geteslint) | [Mailing List](https://groups.google.com/group/eslint) | [Chat Room](https://gitter.im/eslint/eslint) [Website](http://eslint.org) | [Configuring](http://eslint.org/docs/user-guide/configuring) | [Rules](http://eslint.org/docs/rules/) | [Contributing](http://eslint.org/docs/developer-guide/contributing) | [Reporting Bugs](http://eslint.org/docs/developer-guide/contributing/reporting-bugs) | [Code of Conduct](https://jquery.org/conduct/) [Twitter](https://twitter.com/geteslint) | [Mailing List](https://groups.google.com/group/eslint) | [Chat Room](https://gitter.im/eslint/eslint)


ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code. In many ways, it is similar to JSLint and JSHint with a few exceptions: ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code. In many ways, it is similar to JSLint and JSHint with a few exceptions:


Expand Down
4 changes: 2 additions & 2 deletions bin/eslint.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
/** /**
* @fileoverview Main CLI that is run via the eslint command. * @fileoverview Main CLI that is run via the eslint command.
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright 2013 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* See LICENSE file in root directory for full license. * MIT License

This comment has been minimized.

Copy link
@tunnckoCore

tunnckoCore Apr 26, 2016

why not @license MIT License ?

*/ */


"use strict"; "use strict";
Expand Down
2 changes: 2 additions & 0 deletions lib/api.js
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
/** /**
* @fileoverview Expose out ESLint and CLI to require. * @fileoverview Expose out ESLint and CLI to require.
* @author Ian Christian Myers * @author Ian Christian Myers
* @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */


"use strict"; "use strict";
Expand Down
4 changes: 2 additions & 2 deletions lib/ast-utils.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
/** /**
* @fileoverview Common utils for AST. * @fileoverview Common utils for AST.
* @author Gyandeep Singh * @author Gyandeep Singh
* @copyright 2015 Gyandeep Singh. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* See LICENSE file in root directory for full license. * MIT License
*/ */


"use strict"; "use strict";
Expand Down
4 changes: 2 additions & 2 deletions lib/cli-engine.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
/** /**
* @fileoverview Main CLI object. * @fileoverview Main CLI object.
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright 2014 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* See LICENSE in root directory for full license. * MIT License
*/ */


"use strict"; "use strict";
Expand Down
2 changes: 2 additions & 0 deletions lib/cli.js
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
/** /**
* @fileoverview Main CLI object. * @fileoverview Main CLI object.
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */


"use strict"; "use strict";
Expand Down
7 changes: 3 additions & 4 deletions lib/config.js
Original file line number Original file line Diff line number Diff line change
@@ -1,11 +1,10 @@
/** /**
* @fileoverview Responsible for loading config files * @fileoverview Responsible for loading config files
* @author Seth McLaughlin * @author Seth McLaughlin
* @copyright 2014-2016 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* @copyright 2014 Michael McLaughlin. All rights reserved. * MIT License
* @copyright 2013 Seth McLaughlin. All rights reserved.
* See LICENSE in root directory for full license.
*/ */

"use strict"; "use strict";


//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions lib/eslint.js
Original file line number Original file line Diff line number Diff line change
@@ -1,9 +1,10 @@
/** /**
* @fileoverview Main ESLint object. * @fileoverview Main ESLint object.
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright 2013 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* See LICENSE file in root directory for full license. * MIT License
*/ */

"use strict"; "use strict";


//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions lib/file-finder.js
Original file line number Original file line Diff line number Diff line change
@@ -1,10 +1,10 @@
/** /**
* @fileoverview Util class to find config files. * @fileoverview Util class to find config files.
* @author Aliaksei Shytkin * @author Aliaksei Shytkin
* @copyright 2014 Michael McLaughlin. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* @copyright 2014 Aliaksei Shytkin. All rights reserved. * MIT License
* See LICENSE in root directory for full license.
*/ */

"use strict"; "use strict";


//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions lib/ignored-paths.js
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,10 @@
/** /**
* @fileoverview Responsible for loading ignore config files and managing ignore patterns * @fileoverview Responsible for loading ignore config files and managing ignore patterns
* @author Jonathan Rajavuori * @author Jonathan Rajavuori
* @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */

"use strict"; "use strict";


//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions lib/load-rules.js
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
/** /**
* @fileoverview Module for loading rules from files and directories. * @fileoverview Module for loading rules from files and directories.
* @author Michael Ficarra * @author Michael Ficarra
* @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */


"use strict"; "use strict";
Expand Down
4 changes: 3 additions & 1 deletion lib/logging.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,10 @@
/** /**
* @fileoverview Handle logging for ESLint * @fileoverview Handle logging for ESLint
* @author Gyandeep Singh * @author Gyandeep Singh
* @copyright 2015 Gyandeep Singh. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */

"use strict"; "use strict";


/* istanbul ignore next */ /* istanbul ignore next */
Expand Down
4 changes: 3 additions & 1 deletion lib/options.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,10 @@
/** /**
* @fileoverview Options configuration for optionator. * @fileoverview Options configuration for optionator.
* @author George Zahariev * @author George Zahariev
* See LICENSE in root directory for full license. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */

"use strict"; "use strict";


//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions lib/rule-context.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
/** /**
* @fileoverview RuleContext utility for rules * @fileoverview RuleContext utility for rules
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright 2013 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* See LICENSE file in root directory for full license. * MIT License
*/ */
"use strict"; "use strict";


Expand Down
2 changes: 2 additions & 0 deletions lib/rules.js
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,8 @@
/** /**
* @fileoverview Defines a storage for rules. * @fileoverview Defines a storage for rules.
* @author Nicholas C. Zakas * @author Nicholas C. Zakas
* @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */


"use strict"; "use strict";
Expand Down
3 changes: 2 additions & 1 deletion lib/timing.js
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,8 @@
/** /**
* @fileoverview Tracks performance of individual rules. * @fileoverview Tracks performance of individual rules.
* @author Brandon Mills * @author Brandon Mills
* @copyright 2014 Brandon Mills. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* MIT License
*/ */


"use strict"; "use strict";
Expand Down
4 changes: 2 additions & 2 deletions lib/token-store.js
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +1,8 @@
/** /**
* @fileoverview Object to handle access and retrieval of tokens. * @fileoverview Object to handle access and retrieval of tokens.
* @author Brandon Mills * @author Brandon Mills
* @copyright 2014 Nicholas C. Zakas. All rights reserved. * @copyright jQuery Foundation and other contributors, https://jquery.org/
* @copyright 2014 Brandon Mills. All rights reserved. * MIT License
*/ */
"use strict"; "use strict";


Expand Down

0 comments on commit df53414

Please sign in to comment.