-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from twilio-labs/add-prettier
add prettier
- Loading branch information
Showing
23 changed files
with
3,296 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const rules = require('./rules'); | ||
|
||
module.exports = { | ||
rules, | ||
env: { | ||
es6: true, | ||
}, | ||
}; |
Oops, something went wrong.