Skip to content

Instantly share code, notes, and snippets.

View YoonjaeYoo's full-sized avatar
😎
Building cool stuffs

Yoonjae Yoo YoonjaeYoo

😎
Building cool stuffs
View GitHub Profile
@Rob117
Rob117 / .eslintrc.js
Last active September 18, 2020 18:47
Eslint for React Native, sensible settings
module.exports = {
extends: 'universe/native',
plugins: ['react', 'react-native'],
rules: {
'react/jsx-closing-bracket-location': 2,
'brace-style': [2, '1tbs'],
'react/jsx-max-props-per-line': [
'error',
{ maximum: 1, when: 'multiline' }
],