Sha256: 52e1c76824e4322df9639d907e844a9824eaa5e5ce065ba89f72c274d7c5b974

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

# Fashion Police

> Sweatpants are a sign of defeat.
> — Karl Lagerfeld

KissKissBankBank's guide for maintaining a common code style.

## Ruby

Follow the [Ruby Style Guide](https://github.com/rubocop-hq/ruby-style-guide)
with our custom
[`.rubocop.yml`](https://github.com/KissKissBankBank/fashion_police/blob/master/.rubocop.yml).

### Gem

To use it in your project, add to your `Gemfile`:

```rb
# KissKissBankBank's shared style configuration
gem 'fashion_police', require: false
```

Then, add to your `.rubocop.yml`:

```yml
inherit_gem:
  fashion_police:
    - .rubocop.yml
```

### Release

Update the version in `fashion_police.gemspec`, update the `CHANGELOG` and
commit the changes.

Finally:

```sh
rake release
````

If you don't have the correct rights on rubygems.org, create an account and ask
one of the owners to add you with `gem owner fashion_police --add <email>`.


## JavaScript

Follow Airbnb's [JavaScript](https://github.com/airbnb/javascript) guide.

## CSS

Follow Airbnb's [CSS](https://github.com/airbnb/css) guide.

## General

- All comments, commits, committed documentation should be written in English.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fashion_police-1.2.4 README.md
fashion_police-1.2.3 README.md