title: "test" date: 2018-09-09T00:00:00-00:00 copyright: "Your Website" #mapsapikey: xxx
socialhandles: twitter: "stream_running" github: "runningstream"
module.exports = { | |
parser: 'babel-eslint', | |
env: { browser: true }, | |
extends: 'airbnb', | |
plugins: ['react', 'react-native', 'jsx-a11y', 'import', 'jest'], | |
rules: { | |
// Import Rules | |
'import/no-extraneous-dependencies': ['error', { devDependencies: true }], | |
'import/no-named-as-default': 1, | |
'import/prefer-default-export': 2, |
import RNFetchBlob from 'react-native-fetch-blob'; | |
const DocumentDir = RNFetchBlob.fs.dirs.DocumentDir; | |
const storagePath = `${DocumentDir}/persistStore`; | |
const encoding = 'utf8'; | |
const toFileName = name => ( | |
name.split(':').join('-') | |
); |
After few hours read susan source code. These are my suggestions for now:
public class Human | |
{ | |
public int Energy { get; private set; } | |
public bool Tired { get; private set; } | |
public void Eat(int calory) | |
{ | |
Energy += calory; | |
} |