Skip to content

Instantly share code, notes, and snippets.

View koni's full-sized avatar
🏠
Working from home

koni koni

🏠
Working from home
View GitHub Profile
@IzumiSy
IzumiSy / balloon.jsx
Created July 12, 2017 08:08
Balloon component for React Native
import React from "react";
import {
StyleSheet,
TouchableWithoutFeedback,
View
} from "react-native";
export class Notifications extends React.Component {
componentWillMount() {
this.state = {
@kkkw
kkkw / phpcs.md
Last active March 19, 2024 06:59
phpcsで警告が出たときに見直す内容とか
ルール 内容
Generic.WhiteSpace.DisallowTabIndent.TabsUsed インデントにハードタブを使っている。ソフトタブにすること
Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine メソッドの開始ブレスは、改行すること
CakePHP.Commenting.FunctionComment.Missing phpdocのコメントがない
CakePHP.WhiteSpace.TabAndSpace タブとスペースに関するエラー。インデント揃えのための複数スペースはダメなど。
Generic.WhiteSpace.DisallowTabIndent.NonIndentTabsUsed インデント揃えをするためにハードタブを使ってはならない。スペースを使うこと
Squiz.WhiteSpace.SuperfluousWhitespace.EndLine 行末などに不要なスペースがある。もしくは、スペースのみの行がある。
CakePHP.WhiteSpace.CommaSpacing 関数コールで引数を渡すとき、カンマの前にスペースがある場合など
CakePHP.NamingConventions.ValidFunctionName.PrivateMethodInCore これはなぞ。
@jnhuynh
jnhuynh / gist:86693d8b485f4d335300
Last active February 7, 2018 07:10
React Native Directory Structure
.
├── index.ios.js
├── js
│   ├── actions
│   │   ├── ChatServerActionCreators.js
│   │   └── ChatThreadActionCreators.js
│   ├── components
│   │   ├── ChatScreen
│   │   │   ├── index.js
@cheeaun
cheeaun / js-error-logging-services.md
Last active December 10, 2023 13:04
JavaScript error logging services