Skip to content
Snippets Groups Projects
  • Lukas Bulwahn's avatar
    53796fc4
    making layout indentation use 4 spaces · 53796fc4
    Lukas Bulwahn authored
    The description is not indented after line breaks. All other
    information, i.e., the dependencies and SRCURI, are indented with
    four spaces after line breaks. Shell scripts are indented with
    multiples of four spaces.
    
    In recipes-ros, I located and checked for tabulators and spacing
    with these bash commands:
    
    egrep '^ [^ ]+' . --exclude *.patch -R
    egrep '^  [^ ]+' . --exclude *.patch -R
    egrep '^   [^ ]+' . --exclude *.patch -R
    egrep '^    [ ]+[^ ]+' . --exclude *.patch -R
    
    While going through the recipes and manually improving the layout,
    I also adjusted the descriptions to use maximal 100 characters
    per line.
    53796fc4
    History
    making layout indentation use 4 spaces
    Lukas Bulwahn authored
    The description is not indented after line breaks. All other
    information, i.e., the dependencies and SRCURI, are indented with
    four spaces after line breaks. Shell scripts are indented with
    multiples of four spaces.
    
    In recipes-ros, I located and checked for tabulators and spacing
    with these bash commands:
    
    egrep '^ [^ ]+' . --exclude *.patch -R
    egrep '^  [^ ]+' . --exclude *.patch -R
    egrep '^   [^ ]+' . --exclude *.patch -R
    egrep '^    [ ]+[^ ]+' . --exclude *.patch -R
    
    While going through the recipes and manually improving the layout,
    I also adjusted the descriptions to use maximal 100 characters
    per line.