-
-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
So we don't have to manually manage a huge .eslintrc file
- Loading branch information
1 parent
17173a2
commit 6d267f0
Showing
26 changed files
with
184 additions
and
316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
* text=auto | ||
*.js text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- 4 | ||
- 6 | ||
- node | ||
after_success: "./deploy.sh" | ||
- '6' | ||
- '4' | ||
- '0.12' | ||
- '0.10' | ||
after_success: ./deploy.sh | ||
env: | ||
global: | ||
- COMMIT_AUTHOR_EMAIL: yeoman@yeoman.io | ||
- COMMIT_AUTHOR_NAME: yeoman | ||
- SOURCE_BRANCH: master | ||
- TARGET_BRANCH: gh-pages | ||
- DOCS_DIR: "../yeoman-generator-doc" | ||
- GH_OWNER: yeoman | ||
- GH_PROJECT_NAME: generator | ||
- DEPLOY_ON_NODE_VERSION: v6 | ||
- secure: Hv7gACQoYGtesz1NTJYRHjGCimEJEjj4bQP2iTpDUUbfAiYe/4QPemoyDEFjRxbu5m2uoYwMk0AQrW7DnQhNAhl7u24jYnRgQyd/2GOx3xZgjwnao27gsrTHss4IyXEaS2h3kRuIVSD+xibz/lwZm+erHOQ9VOwvCQkOKnILXW8= | ||
- COMMIT_AUTHOR_EMAIL: yeoman@yeoman.io | ||
- COMMIT_AUTHOR_NAME: yeoman | ||
- SOURCE_BRANCH: master | ||
- TARGET_BRANCH: gh-pages | ||
- DOCS_DIR: ../yeoman-generator-doc | ||
- GH_OWNER: yeoman | ||
- GH_PROJECT_NAME: generator | ||
- DEPLOY_ON_NODE_VERSION: v6 | ||
- secure: >- | ||
Hv7gACQoYGtesz1NTJYRHjGCimEJEjj4bQP2iTpDUUbfAiYe/4QPemoyDEFjRxbu5m2uoYwMk0AQrW7DnQhNAhl7u24jYnRgQyd/2GOx3xZgjwnao27gsrTHss4IyXEaS2h3kRuIVSD+xibz/lwZm+erHOQ9VOwvCQkOKnILXW8= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/*global suite, bench */ | ||
/* global suite, bench */ | ||
'use strict'; | ||
|
||
suite('yeoman-generator module', function () { | ||
bench('require', function () { | ||
require('..'); | ||
require('..'); // eslint-disable-line import/no-unassigned-import | ||
delete require.cache[require.resolve('..')]; | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.