Skip to content

Commit

Permalink
Remove jshint arethusaUtil global declarations
Browse files Browse the repository at this point in the history
We define it in our .jshintrc now.
  • Loading branch information
LFDM committed May 11, 2014
1 parent b398767 commit 78fd363
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions app/js/arethusa.core/configurator.service.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

/* global arethusaUtil */

angular.module('arethusa.core').service('configurator', function($injector) {
this.getService = function(serviceName) {
return $injector.get(serviceName);
Expand Down
1 change: 0 additions & 1 deletion app/js/arethusa.morph/bsp_morph_retriever.service.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use strict";

/* global arethusaUtil */
angular.module('arethusa.morph').service('bspMorphRetriever', function($resource) {
// Might want to read in language and engine dynamically later
// also make factory out of it, so that we could use several
Expand Down
1 change: 0 additions & 1 deletion app/js/arethusa.morph/directives/morph_form_create.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use strict";

/* global arethusaUtil */
angular.module('arethusa.morph').directive('morphFormCreate', function() {
return {
restrict: 'E',
Expand Down
2 changes: 0 additions & 2 deletions app/js/arethusa.morph/morph.service.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

/* global arethusaUtil */

angular.module('arethusa.morph').service('morph', function(state, configurator) {
this.conf = configurator.configurationFor('morph');
this.attributes = this.conf.attributes;
Expand Down
2 changes: 0 additions & 2 deletions app/js/services/treebank_retriever.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

/* global arethusaUtil */

angular.module('arethusa').service('treebankRetriever', function($http) {
// tokens should always be loaded synchronous - the app should
// not start anything without knowing an initial state
Expand Down
1 change: 0 additions & 1 deletion spec/arethusa_util_spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use strict";

/* global arethusaUtil */
describe("arethusaUtil", function() {
describe("formatNumber", function() {
describe('pads a number with zeros', function() {
Expand Down

0 comments on commit 78fd363

Please sign in to comment.