Skip to content

Commit 7432935

Browse files
committed
chore(init): initial commit
0 parents  commit 7432935

15 files changed

+5904
-0
lines changed

.commitlintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['@form8ion']};

.czrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"path":"./node_modules/cz-conventional-changelog"}

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
indent_style = space
10+
indent_size = 2
11+
end_of_line = lf
12+
insert_final_newline = true

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/settings.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_extends: .github
2+
repository:
3+
name: eslint-config-react
4+
description: Shareable config for ESLint for React components
5+
homepage: 'https://npm.im/@dsmjs/eslint-config-react'
6+
private: false

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules/
2+

.huskyrc.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"hooks":{"pre-commit":"npm test","commit-msg":"commitlint -e"}}

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
update-notifier=false

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v10.16.0

.remarkrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exports.plugins = ['@form8ion/remark-lint-preset'];

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: node_js
2+
notifications:
3+
email: false
4+
branches:
5+
except:
6+
- /^v\d+\.\d+\.\d+(-(alpha|beta)\.\d+(@(alpha|beta))?)?$/
7+
before_script:
8+
- npm ls >/dev/null
9+
deploy:
10+
provider: script
11+
skip_cleanup: true
12+
script: npx semantic-release
13+
'on':
14+
all_branches: true
15+
env:
16+
global:
17+
- FORCE_COLOR=1
18+
- NPM_CONFIG_COLOR=always

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
MIT License
2+
3+
Copyright (c) 2019 dsmJS
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# eslint-config-react
2+
3+
[Shareable config](https://eslint.org/docs/developer-guide/shareable-configs#shareable-configs)
4+
for [ESLint](https://eslint.org) for [React](https://reactjs.org) components
5+
6+
<!-- status badges -->
7+
[![Build Status][ci-badge]][ci-link]
8+
9+
## Usage
10+
11+
<!-- consumer badges -->
12+
[![npm][npm-badge]][npm-link]
13+
[![MIT license][license-badge]][license-link]
14+
15+
### Installation
16+
17+
```sh
18+
$ npm install @dsmjs/eslint-config-react --save-dev
19+
```
20+
21+
## Contributing
22+
23+
<!-- contribution badges -->
24+
[![Conventional Commits][commit-convention-badge]][commit-convention-link]
25+
[![Commitizen friendly][commitizen-badge]][commitizen-link]
26+
[![semantic-release][semantic-release-badge]][semantic-release-link]
27+
[![PRs Welcome][PRs-badge]][PRs-link]
28+
[![Greenkeeper badge](https://badges.greenkeeper.io/dsmjs/eslint-config-react.svg)](https://greenkeeper.io/)
29+
30+
### Dependencies
31+
32+
```sh
33+
$ nvm install
34+
$ npm install
35+
```
36+
37+
### Verification
38+
39+
```sh
40+
$ npm test
41+
```
42+
43+
[npm-link]: https://www.npmjs.com/package/@dsmjs/eslint-config-react
44+
[npm-badge]: https://img.shields.io/npm/v/@dsmjs/eslint-config-react.svg
45+
[license-link]: LICENSE
46+
[license-badge]: https://img.shields.io/github/license/dsmjs/eslint-config-react.svg
47+
[ci-link]: https://travis-ci.com/dsmjs/eslint-config-react
48+
[ci-badge]: https://img.shields.io/travis/com/dsmjs/eslint-config-react/master.svg
49+
[commit-convention-link]: https://conventionalcommits.org
50+
[commit-convention-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg
51+
[commitizen-link]: http://commitizen.github.io/cz-cli/
52+
[commitizen-badge]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
53+
[semantic-release-link]: https://github.com/semantic-release/semantic-release
54+
[semantic-release-badge]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
55+
[PRs-link]: http://makeapullrequest.com
56+
[PRs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg

0 commit comments

Comments
 (0)