1
0
Fork 0
This commit is contained in:
Travis Fischer 2018-07-23 23:26:18 -04:00 committed by Joost De Cock
parent b01b667efd
commit 0cb1bea747
2 changed files with 3 additions and 7 deletions

View file

@ -2,7 +2,7 @@
> CLI for easily publishing modern React libraries with Rollup and example usage via create-react-app.
[![NPM](https://img.shields.io/npm/v/create-react-library.svg)](https://www.npmjs.com/package/create-react-library) [![Build Status](https://travis-ci.org/transitive-bullshit/create-react-library.svg?branch=master)](https://travis-ci.org/transitive-bullshit/create-react-library) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![NPM](https://img.shields.io/npm/v/create-react-library.svg)](https://www.npmjs.com/package/create-react-library) [![Build Status](https://travis-ci.com/transitive-bullshit/create-react-library.svg?branch=master)](https://travis-ci.com/transitive-bullshit/create-react-library) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
## Intro

View file

@ -11,17 +11,13 @@
"react"
],
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
"sourceType": "module"
},
"rules": {
// don't force es6 functions to include space before paren
"space-before-function-paren": 0,
// allow specifying true explicitly for boolean props
"react/jsx-boolean-value": 0,
// allow imports mixed with non-import statements at top of file
"import/first": 0
"react/jsx-boolean-value": 0
}
}