###Tipos de vehículos:
Código | Descripción |
---|---|
scooter | Cualquier tipo de motocicleta |
car | Autos tipo sedan |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
set tabstop=2 | |
set softtabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set number |
##Short description about Rubocopy | |
On his official github(https://github.com/bbatsov/rubocop) it says: | |
"RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of the guidelines outlined in the community Ruby Style Guide." | |
##Steps to install | |
Just run the command: | |
$ gem install rubocop | |
##How to use it | |
Just run the "rubocop" command, and the file/folder to analyze the code, that's all. The command will look for errors/offenses and it will print out to terminal with a brief description |
Los open mind |