This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
156 changed files
with
2,710 additions
and
1,564 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
# EditorConfig is awesome: http://EditorConfig.org | ||
|
||
# How-to with your editor: http://editorconfig.org/#download | ||
# Howto with your editor: http://editorconfig.org/#download | ||
# Sublime: https://github.com/sindresorhus/editorconfig-sublime | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
[**] | ||
end_of_line = lf | ||
indent_style = tab | ||
insert_final_newline = true | ||
|
||
[{Dockerfile,Procfile}] | ||
trim_trailing_whitespace = true | ||
|
||
# Standard at: https://github.com/felixge/node-style-guide | ||
[{*.js,*.json}] | ||
# Standard at: https://github.com/felixge/node-style-guide | ||
[**.js, **.json] | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
quote_type = single | ||
curly_bracket_next_line = false | ||
spaces_around_operators = true | ||
space_after_control_statements = true | ||
space_after_anonymous_functions = false | ||
spaces_in_brackets = false | ||
|
||
# No Standard. Please document a standard if different from .js | ||
[**.yml, **.html, **.css] | ||
trim_trailing_whitespace = true | ||
indent_style = tab | ||
|
||
# No standard. Please document a standard if different from .js | ||
[**.md] | ||
indent_style = tab | ||
|
||
# Standard at: | ||
[Makefile] | ||
indent_style = tab |
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 +1 @@ | ||
/app/tests | ||
/app/tests |
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 was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
app/controllers/users/users.authorization.server.controller.js
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
client: { | ||
lib: { | ||
css: [ | ||
'public/lib/bootstrap/dist/css/bootstrap.css', | ||
'public/lib/bootstrap/dist/css/bootstrap-theme.css' | ||
], | ||
js: [ | ||
'public/lib/angular/angular.js', | ||
'public/lib/angular-resource/angular-resource.js', | ||
'public/lib/angular-animate/angular-animate.js', | ||
'public/lib/angular-ui-router/release/angular-ui-router.js', | ||
'public/lib/angular-ui-utils/ui-utils.js', | ||
'public/lib/angular-bootstrap/ui-bootstrap-tpls.js', | ||
'public/lib/angular-file-upload/angular-file-upload.js' | ||
], | ||
tests: ['public/lib/angular-mocks/angular-mocks.js'] | ||
}, | ||
css: [ | ||
'modules/*/client/css/*.css' | ||
], | ||
less: [ | ||
'modules/*/client/less/*.less' | ||
], | ||
sass: [ | ||
'modules/*/client/scss/*.scss' | ||
], | ||
js: [ | ||
'modules/core/client/app/config.js', | ||
'modules/core/client/app/init.js', | ||
'modules/*/client/*.js', | ||
'modules/*/client/**/*.js' | ||
], | ||
views: ['modules/*/client/views/**/*.html'] | ||
}, | ||
server: { | ||
allJS: ['gruntfile.js', 'server.js', 'config/**/*.js', 'modules/*/server/**/*.js'], | ||
models: 'modules/*/server/models/**/*.js', | ||
routes: ['modules/!(core)/server/routes/**/*.js', 'modules/core/server/routes/**/*.js'], | ||
sockets: 'modules/*/server/sockets/**/*.js', | ||
config: 'modules/*/server/config/*.js', | ||
policies: 'modules/*/server/policies/*.js', | ||
views: 'modules/*/server/views/*.html' | ||
} | ||
}; |
Oops, something went wrong.