Skip to content

Commit

Permalink
Changed ESLint directives in AMD modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Prud'homme committed Aug 22, 2017
1 parent 061ced1 commit 7e3d38a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions amd/src/adapter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/* eslint-env es6 */
/* eslint-disable curly, max-len, no-console, no-invalid-this, no-unused-vars, semi */
// ESLint directives.
/* eslint-disable */

// JSHint directives.
/* jshint ignore:start */

/*(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.adapter = f()}})(function(){*/
define([], function() {
Expand Down
7 changes: 5 additions & 2 deletions amd/src/bowser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
/* eslint-env es6 */
/* eslint-disable curly, no-mixed-spaces-and-tabs, no-tabs, no-unused-expressions, no-unused-vars, semi */
// ESLint directives.
/* eslint-disable */

// JSHint directives.
/* jshint ignore:start */

/*!
* Bowser - a browser detector
Expand Down

0 comments on commit 7e3d38a

Please sign in to comment.