From ff7b270392d31bf5c2271e6f02d64f0b66360903 Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Sun, 6 Jun 2021 18:04:07 +0200 Subject: [PATCH] chore: add one rule to the .prettierrc.js (semi: true), remove unnecessary comments from the index.js --- .prettierrc.js | 1 + index.js | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.prettierrc.js b/.prettierrc.js index 8c2cb14..9260faa 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -2,4 +2,5 @@ module.exports = { singleQuote: true, trailingComma: 'all', arrowParens: 'avoid', + semi: true, }; diff --git a/index.js b/index.js index 7067641..d46f65f 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,3 @@ -/** - * @format - */ - import { AppRegistry } from 'react-native'; import App from './src/screens/App'; import { name as appName } from './app.json';