chore: add one rule to the .prettierrc.js (semi: true), remove unnecessary comments from the index.js

This commit is contained in:
Dawid Wysokiński 2021-06-06 18:04:07 +02:00
parent 6520561e11
commit ff7b270392
2 changed files with 1 additions and 4 deletions

View File

@ -2,4 +2,5 @@ module.exports = {
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
semi: true,
};

View File

@ -1,7 +1,3 @@
/**
* @format
*/
import { AppRegistry } from 'react-native';
import App from './src/screens/App';
import { name as appName } from './app.json';