0
0

More than 3 years have passed since last update.

Ruby コーティング規約について レイアウト編 1

Last updated at Posted at 2020-01-31

はじめに

Rubyの基礎を学習中の方に向けて記載致します。
私自身これからチーム開発を行う上で大事にしたい。知っておきたいことをOutputします。

レイアウトについて

①インデント(空白)にはスペース2つを意識する。

qiita.rb
#悪い例
def dog
    puts "かわいい" #スペース4つ
end
dog

#良い例
def dog
  puts "かわいい" #スペース2つ
end
dog

②式の区切りに;を使わない。1行につき式1を意識する。

qiita.rb
# 悪い例
puts "dog"; #余分なセミコロン
puts "dog" ; puts "cat" # 2つの式が1行にある

# 良い例
puts "dog" #セミコロンを削除

puts "dog" #2つの式を2行に分けた + セミコロン削除
puts "cat"

さいごに

毎日更新します。
皆様の復習等にご活用頂けますと幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0