[Build] Remove boilerplate from scripts

No longer necessary after JSHint configuration.
This commit is contained in:
Victor Woeltjen
2016-03-04 10:46:38 -08:00
parent 9f840aa0fd
commit ac5ac8d34e
778 changed files with 0 additions and 1547 deletions

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
/**
* Constants used by the framework layer.

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining FrameworkInitializer. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* Responsible for managing the four stages of framework

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define, window, requirejs*/
define([
'require',
@ -50,7 +49,6 @@ define([
ExtensionSorter,
ApplicationBootstrapper
) {
'use strict';
function FrameworkLayer($http, $log) {
this.$http = $http;

View File

@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
define(
[],
function () {
"use strict";
// Log levels; note that these must be in order of
// most-important-first for LogLevel to function correctly

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define, window, requirejs*/
/**
* Implements the framework layer, which handles the loading of bundles
@ -40,7 +39,6 @@ define(
FrameworkLayer,
angular
) {
"use strict";
function Main() {
}

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining Bootstrapper. Created by vwoeltje on 11/4/14.
@ -29,7 +28,6 @@
define(
[],
function () {
"use strict";
/**
* The application bootstrapper is responsible for issuing the

View File

@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
define(
['../Constants', './Extension'],
function (Constants, Extension) {
"use strict";
/**

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining BundleLoader.js. Created by vwoeltje on 10/31/14.
@ -27,7 +26,6 @@
define(
['../Constants', './Bundle'],
function (Constants, Bundle) {
"use strict";
var INVALID_ARGUMENT_MESSAGE = "Malformed loadBundles argument; " +
"expected string or array",

View File

@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
define(
[],
function () {
"use strict";
/**
* An extension's plain JSON definition.

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining CustomRegistrars. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
['../Constants', './ServiceCompositor'],
function (Constants, ServiceCompositor) {
"use strict";
/**
* Handles registration of a few specific extension types that are

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining ExtensionRegistrar. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
['../Constants', './PartialConstructor'],
function (Constants, PartialConstructor) {
"use strict";
/**
* Responsible for registering extensions with Angular.

View File

@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
define(
["../Constants"],
function (Constants) {
"use strict";
/**
* Responsible for applying priority order to extensions in a

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining PartialConstructor. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* A partial constructor is used to instantiate objects in two

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining ServiceCompositor. Created by vwoeltje on 11/5/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* Handles service compositing; that is, building up services

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining BundleResolver. Created by vwoeltje on 11/4/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* Responsible for the extension resolution phase of framework

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining ExtensionResolver. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* An ExtensionResolver is responsible for loading any implementation

View File

@ -19,7 +19,6 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define,Promise*/
/**
* Module defining ImplementationLoader. Created by vwoeltje on 11/3/14.
@ -27,7 +26,6 @@
define(
[],
function () {
"use strict";
/**
* Responsible for loading extension implementations

View File

@ -19,12 +19,10 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
/*global define*/
define(
[],
function () {
"use strict";
/**
* Handles configuration of RequireJS to expose libraries