Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(operator): 各演算子の解説を追加 #104

Merged
merged 34 commits into from
Jul 30, 2016
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
afe0bb1
feat(operator): 草案を追加
azu Jul 25, 2016
00a3b65
feat(operator): 二項演算子の解説を追加
azu Jul 25, 2016
91d434f
feat(operator): グループ演算子についてを追加
azu Jul 25, 2016
c4866af
feat(operator): 単行プラス/マイナス演算子
azu Jul 25, 2016
0ae1f46
feat(operator): 比較演算子を追加
azu Jul 26, 2016
3945b70
style(operator): textlintエラーを修正
azu Jul 26, 2016
c5aed9a
feat(operator): 比較演算子 > < を追加
azu Jul 26, 2016
6141259
feat(operator): ビット演算についてを追加
azu Jul 27, 2016
1207793
style(operator): 表記を統一
azu Jul 27, 2016
4e0bf28
feat(operator): ビット演算子を追加
azu Jul 27, 2016
4df0dab
fix(operator): fix example
azu Jul 27, 2016
8e628d9
fix(operator): fix example
azu Jul 27, 2016
67d0249
fix(operator): fix example code
azu Jul 27, 2016
5bb3d92
feat(operator):条件演算子を追加
azu Jul 28, 2016
24eadff
feat(operator): AND、OR演算子を追加
azu Jul 28, 2016
6290c7f
feat(operator):NOTと文字列結合について
azu Jul 28, 2016
9c03edb
fix(operator): デフォルト引数の記述を変更
azu Jul 28, 2016
ad9a135
fix(operator): update power-doctest for default parameter
azu Jul 29, 2016
3928d00
chore(operator): remove text
azu Jul 29, 2016
4c119a8
chore(operator): 特殊な単項演算子は削除
azu Jul 30, 2016
b06493e
refactor(operator): +演算子の型変換についてを書き換え
azu Jul 30, 2016
9f12c6d
chore(operator): グループ演算子の例を論理演算子に変更
azu Jul 30, 2016
dfc9188
fix(operator): ++と--についてをもっと簡潔に
azu Jul 30, 2016
ef94bd2
style(operator): 無駄なスペースを削除
azu Jul 30, 2016
971ca1c
chore(operator): fix typo
azu Jul 30, 2016
792418a
chore(operator): fix typo
azu Jul 30, 2016
737d784
chore(operator): fix typo
azu Jul 30, 2016
bc07b77
fix(operator): 仕様が何かを明示
azu Jul 30, 2016
91215a7
chore(operator): 口調の統一
azu Jul 30, 2016
a1a7ff5
style(operator): textlintのエラーを修正
azu Jul 30, 2016
7b4df99
chore(operator): indirect callを脚注に移動
azu Jul 30, 2016
a0e6177
chore(operator): 評価結果を返す点についてを追加
azu Jul 30, 2016
06b7c5b
chore(operator): add 。
azu Jul 30, 2016
efec018
chore(test): add timout option
azu Jul 30, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .textlintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@
"rules": {
"preset-ja-technical-writing": {
"max-kanji-continuous-len": {
"max": 6,
"allow": [
"浮動小数点数",
"排他的論理和",
"文字列演算子"
"文字列演算子",
"厳密等価演算子",
"不等価演算子",
"厳密比較演算子",
"厳密不等価演算子",
"論理積演算子",
"論理和演算子",
"排他的論理和演算子"
]
}
},
Expand Down
1 change: 1 addition & 0 deletions prh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ rules:
- /for\.{1,2}of/
- for-of
- for/of

# typo
- expected: $1進数
patterns:
Expand Down
Loading