Skip to content

Commit

Permalink
linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PiXlRAM committed Feb 6, 2024
1 parent a9afdbc commit 89bb8b8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dfm-sideline-sidekick-app/components/BulletPointStyles.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StyleSheet } from "react-native";
import * as Font from 'expo-font';
import { StyleSheet } from "react-native";

let customFonts = {
const customFonts = {
'Roboto-Regular': require('../assets/fonts/Roboto-Regular.ttf'),

Check failure on line 5 in dfm-sideline-sidekick-app/components/BulletPointStyles.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

Unsafe assignment of an `any` value
'Roboto-Bold': require('../assets/fonts/Roboto-Bold.ttf')

Check failure on line 6 in dfm-sideline-sidekick-app/components/BulletPointStyles.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

Unsafe assignment of an `any` value
};
Expand Down
1 change: 1 addition & 0 deletions dfm-sideline-sidekick-app/pages/EmergencyCare.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Text, TouchableOpacity, View } from "react-native";

Check warning on line 1 in dfm-sideline-sidekick-app/pages/EmergencyCare.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

There should be no empty line within import group

import AntIcon from "react-native-vector-icons/AntDesign";

import BulletPoint from "../components/BulletPoint";

Check warning on line 5 in dfm-sideline-sidekick-app/pages/EmergencyCare.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

There should be at least one empty line between import groups
Expand Down
1 change: 1 addition & 0 deletions dfm-sideline-sidekick-app/pages/generalPrinciples.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Text, TouchableOpacity, View } from "react-native";

Check warning on line 1 in dfm-sideline-sidekick-app/pages/generalPrinciples.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

There should be no empty line within import group

import AntIcon from "react-native-vector-icons/AntDesign";

import BulletPoint from "../components/BulletPoint";

Check warning on line 5 in dfm-sideline-sidekick-app/pages/generalPrinciples.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

There should be at least one empty line between import groups
Expand Down
4 changes: 2 additions & 2 deletions dfm-sideline-sidekick-app/pages/generalPrinciplesStyles.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StyleSheet } from "react-native";
import * as Font from 'expo-font';
import { StyleSheet } from "react-native";

let customFonts = {
const customFonts = {
'Roboto-Regular': require('../assets/fonts/Roboto-Regular.ttf'),

Check failure on line 5 in dfm-sideline-sidekick-app/pages/generalPrinciplesStyles.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

Unsafe assignment of an `any` value
'Roboto-Bold': require('../assets/fonts/Roboto-Bold.ttf')

Check failure on line 6 in dfm-sideline-sidekick-app/pages/generalPrinciplesStyles.tsx

View workflow job for this annotation

GitHub Actions / Frontend lint and style check

Unsafe assignment of an `any` value
};
Expand Down

0 comments on commit 89bb8b8

Please sign in to comment.