Skip to content
This repository has been archived by the owner on May 17, 2019. It is now read-only.

Commit

Permalink
Add short MIT license header to all source files (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMSmithCA authored Jan 22, 2018
1 parent b321bf5 commit 2f72272
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

module.exports = {
extends: [require.resolve('eslint-config-fusion')],
};
6 changes: 6 additions & 0 deletions src/__tests__/interface.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import tape from 'tape-cup';
import Plugin from '../index';

Expand Down
6 changes: 6 additions & 0 deletions src/__tests__/test.browser.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/* eslint-env browser */
import test from 'tape-cup';
import App, {createPlugin} from 'fusion-core';
Expand Down
6 changes: 6 additions & 0 deletions src/__tests__/test.node.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import App from 'fusion-core';
import test from 'tape-cup';
import {GenericSessionToken} from 'fusion-tokens';
Expand Down
6 changes: 6 additions & 0 deletions src/browser.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

// @flow
/* eslint-env browser */
import {unescape, createPlugin} from 'fusion-core';
Expand Down
6 changes: 6 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import serverCsrf from './server';
import clientCsrf from './browser';

Expand Down
6 changes: 6 additions & 0 deletions src/server.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import {GenericSessionToken} from 'fusion-tokens';
import {html, createPlugin} from 'fusion-core';
import crypto from 'crypto';
Expand Down
6 changes: 6 additions & 0 deletions src/shared.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/** Copyright (c) 2018 Uber Technologies, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

// @flow
import {createOptionalToken} from 'fusion-tokens';

Expand Down

0 comments on commit 2f72272

Please sign in to comment.