Skip to content

Commit 56654b1

Browse files
authored
Chore: license tweaks (#37)
1 parent c53a654 commit 56654b1

File tree

17 files changed

+1520
-587
lines changed

17 files changed

+1520
-587
lines changed

babel.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
module.exports = {
210
presets: ['module:metro-react-native-babel-preset'],
311
};

commitlint.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
module.exports = {
210
extends: ['@commitlint/config-conventional'],
311
};

config/header.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/

example/App.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import * as React from 'react';
210
import { AntDesign } from '@expo/vector-icons';
311
import { NavigationContainer } from '@react-navigation/native';

example/babel.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
module.exports = function (api) {
210
api.cache(true);
311
return {

example/components/Carousel.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import * as React from 'react';
210
import CarouselItem from './CarouselItem';
311
import { StyleSheet, Text, View } from 'react-native';

example/components/CarouselItem.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import * as React from 'react';
210
import { Dimensions, StyleSheet, View } from 'react-native';
3-
import { Card, Paragraph, Title } from 'react-native-paper';
11+
import { Card } from 'react-native-paper';
412
import { generateRandomIntFromInterval } from '../utils';
5-
import Faker from 'faker';
613

714
const { width: windowWidth } = Dimensions.get('window');
815

example/components/Handle.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import * as React from 'react';
210
import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
311

example/components/Transaction.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import React from 'react';
210
import { ListItemData } from '../utils';
311
import { List } from 'react-native-paper';

example/screens/Home.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* Copyright (c) 2020 Raul Gomez Acuna
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*
7+
*/
8+
19
import * as React from 'react';
210
import { View, StyleSheet } from 'react-native';
311
import { StackNavigationProp } from '@react-navigation/stack';

0 commit comments

Comments
 (0)