Skip to content

Commit

Permalink
Merge pull request #43 from twilio-labs/add-prettier
Browse files Browse the repository at this point in the history
add prettier
  • Loading branch information
ktalebian authored Oct 31, 2019
2 parents cb9c11d + 366c743 commit 630824b
Show file tree
Hide file tree
Showing 23 changed files with 3,296 additions and 150 deletions.
17 changes: 17 additions & 0 deletions packages/eslint-config-twilio-base/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# eslint-config-twilio-base

[![Version](https://img.shields.io/npm/v/eslint-config-twilio-base.svg?style=square)](https://www.npmjs.com/package/eslint-config-twilio)
[![Downloads](https://img.shields.io/npm/dt/eslint-config-twilio-base.svg?style=square)](https://www.npmjs.com/package/eslint-config-twilio)
[![License](https://img.shields.io/npm/l/eslint-config-twilio.svg?style=square)](../../LICENSE)

Twilio's approach to JavaScript styling. This provides the base JavaScript style rules.

## Installation

```bash
$ npm install eslint eslint-config-twilio-base --save-dev
```

## Usage

This package is not intended to be used by its own; all of the remaining Twilio styles will be extending this base package.
8 changes: 8 additions & 0 deletions packages/eslint-config-twilio-base/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const rules = require('./rules');

module.exports = {
rules,
env: {
es6: true,
},
};
Loading

0 comments on commit 630824b

Please sign in to comment.