forked from oasp/generator-oasp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- eslint integrated (rules specified in .eslintrc file, eslint run during gulp test, use gulp lint to run eslint is separation - lint errors in generated tests corrected - jshint support removed
- Loading branch information
Tomasz Szewcow
committed
Sep 25, 2015
1 parent
ba936f5
commit b69861e
Showing
8 changed files
with
39 additions
and
48 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"rules": { | ||
"quotes": [2, "single"], | ||
"linebreak-style": [2, "windows"], | ||
"semi": [2, "always"], | ||
"strict": 2 | ||
}, | ||
"env": { | ||
"browser": true | ||
}, | ||
"globals": { | ||
"angular": true, | ||
// Angular Mocks | ||
"inject": false, | ||
// JASMINE | ||
"describe": false, | ||
"it": false, | ||
"before": false, | ||
"beforeEach": false, | ||
"after": false, | ||
"afterEach": false, | ||
"expect": false, | ||
"jasmine": false, | ||
"spyOn": false | ||
}, | ||
"extends": "eslint:recommended" | ||
} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
angular.module('<%= targetModuleName %>') | ||
.controller('<%= controllerName %>', function ($scope) { | ||
|
||
'use strict'; | ||
$scope.message = 'Hello!'; | ||
}); |
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