Skip to content

Commit

Permalink
Removing authors from files and adding script to generate (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
scalvert authored Jun 26, 2017
1 parent 4b22ef1 commit 63e7d67
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 12 deletions.
23 changes: 23 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Chad Hietala <chadhietala@gmail.com>
Chris Thoburn <runspired@users.noreply.github.com>
David J. Hamilton <github@hjdivad.com>
Edilberto Ruvalcaba <eruvalcaba@linkedin.com>
Ilya Radchenko <knownasilya@gmail.com>
Justin Lan <julan@linkedin.com>
Katie Gengler <katie@kmg.io>
Kyle Turney <turney.kyle@gmail.com>
Marc Lynch <lynchbomb@users.noreply.github.com>
Mikael Riska <mikael.riska@ecraft.com>
Quinn C. Hoyer <qhoyer@linkedin.com>
Ryunosuke Sato <tricknotes.rs@gmail.com>
Sean Johnson <seanjohnson08@gmail.com>
Sean Johnson <sejohnson@linkedin.com>
Stefan Penner <stefan.penner@gmail.com>
Steve Calvert <scalvert@linkedin.com>
Steve Calvert <steve.calvert@gmail.com>
Tomster <tomster@emberjs.com>
Trent Willis <trentmwillis@gmail.com>
Trent Willis <twillis@linkedin.com>
Zhongliang Wang <Cryrivers@users.noreply.github.com>
bravo-kernel <bravo-kernel@users.noreply.github.com>
shamcode <shamcode@gmail.com>
1 change: 0 additions & 1 deletion lib/rules/no-2.0.0-hooks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Don't use Ember 2.0.0 hooks.
* @author Chad Hietala
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-attrs-snapshot.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow use of attrs snapshot in `didReceiveAttrs` and `didUpdateAttrs`.
* @author Chad Hietala
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-attrs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow the use of `this.attrs`.
* @author Chad Hietala
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-broken-super-chain.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Prevent the absence of this._super() in init() calls or the use of this prior to this._super()
* @author Quinn C Hoyer
*/

const MESSAGES = {
Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-global-jquery.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow the use of global `$`.
* @author Steve Calvert
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-jquery-methods.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow the use of specific jQuery methods.
* @author Marc Lynch
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-lifecycle-events.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow use of lifecycle events using `.on()`.
* @author Chad Hietala
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-observers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow use of observers.
* @author Chad Hietala
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-send-action.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow use of sendAction
* @author Edilberto Ruvalcaba
*/
'use strict';

Expand Down
1 change: 0 additions & 1 deletion lib/rules/no-side-effect-cp.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow use of computed properties that include side-effect producing calls.
* @author Chad Hietala
*/

const { getCaller, cleanCaller } = require('../utils/caller');
Expand Down
1 change: 0 additions & 1 deletion lib/rules/require-dependent-keys.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/**
* @fileOverview Disallow computed properties that do not declare dependent keys.
* @author Chad Hietala
*/

const { get } = require('../utils/get');
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc mocha --recursive tests",
"test-server": "mocha --recursive --growl --watch tests"
"test-server": "mocha --recursive --growl --watch tests",
"generate-authors": "git shortlog -sne | cut -f 2 | sort | uniq > AUTHORS.txt"
},
"repository": "ember-best-practices/eslint-plugin-ember-best-practices",
"engines": {
Expand Down

0 comments on commit 63e7d67

Please sign in to comment.