Skip to content

Commit 81f3857

Browse files
authored
Merge pull request #1863 from StoDevX/remove-giant-comments
Remove giant header comments from source files
2 parents df5f304 + cccc118 commit 81f3857

File tree

20 files changed

+8
-80
lines changed

20 files changed

+8
-80
lines changed

source/app.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
/**
2-
* @flow
3-
* All About Olaf
4-
* Index view
5-
*/
1+
// @flow
62

73
import './globalize-fetch'
84
import './setup-moment'

source/views/building-hours/list.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* Building Hours list page
5-
*/
62

73
import React from 'react'
84
import {StyleSheet, SectionList} from 'react-native'

source/views/building-hours/row.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* Building Hours list element
5-
*/
2+
63
import React from 'react'
74
import {View, Text, StyleSheet} from 'react-native'
85
import {Badge} from '../components/badge'

source/views/calendar/calendar-google.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* Calendar page
5-
*/
62

73
import React from 'react'
84
import {EventList} from './event-list'

source/views/calendar/event-list.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* List of calendar events
5-
*/
62

73
import React from 'react'
84
import {StyleSheet, SectionList} from 'react-native'

source/views/calendar/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* Calendar page
5-
*/
62

73
import React from 'react'
84
import {TabNavigator} from '../components/tabbed-view'

source/views/contacts/contact-list.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
/**
2-
* @flow
3-
* All About Olaf
4-
* Contact page
5-
*/
1+
// @flow
62

73
import React from 'react'
84
import {SectionList, StyleSheet} from 'react-native'

source/views/home/home.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
/**
2-
* @flow
3-
* All About Olaf
4-
* iOS Home page
5-
*/
1+
// @flow
62

73
import React from 'react'
84
import {ScrollView, StyleSheet, StatusBar} from 'react-native'

source/views/menus/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
// @flow
2-
/**
3-
* All About Olaf
4-
* Menus page
5-
*/
62

73
import React from 'react'
84
import {TabNavigator} from '../components/tabbed-view'

source/views/menus/menu-bonapp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable react/prop-types, camelcase */
21
// @flow
32
import React from 'react'
43
import LoadingView from '../components/loading'
@@ -151,6 +150,7 @@ export class BonAppHostedMenu extends React.Component<void, Props, State> {
151150

152151
// then we make our own StationMenus list
153152
return toPairs(idsGroupedByStation).map(([name, items], i) => ({
153+
// eslint-disable-next-line camelcase
154154
order_id: String(i),
155155
id: String(i),
156156
label: name,

0 commit comments

Comments
 (0)