Skip to content

Commit

Permalink
Quick project cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
wyze committed Mar 15, 2017
1 parent e5a22c0 commit 62302e6
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
* text=auto
readme.md merge=union
*.js text eol=lf
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# Dependencies
node_modules

# Logs
*.log
npm-debug.log*
yarn-error.log

# OSX
.*DS_Store

# Coverage
coverage
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
sudo: false

language: node_js

node_js:
- 7
- 6
- 4

cache:
directories:
- $HOME/.cache

before_install:
- npm i -g npm@latest
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2017 Neil Kistner <[email protected]> (neilkistner.com)
Copyright (c) Neil Kistner <[email protected]> (neilkistner.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
24 changes: 11 additions & 13 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,32 @@

[![Build Status][travis-image]][travis-url]
[![npm][npm-image]][npm-url]
[![dependencies][deps-image]][deps-url]
[![devDependencies][depsdev-image]][depsdev-url]

> My personal [ESLint](//github.com/eslint/eslint) settings.
## Installation

Use `yarn add --dev <packages>` where `<packages>` are as follows:

> **Note**: You can also do `npm i --save-dev <packages>`.
### React/Preact

```sh
$ npm i --save-dev eslint eslint-config-airbnb eslint-config-wyze eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-wyze
```
eslint eslint-config-airbnb eslint-config-wyze eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react eslint-plugin-wyze
```

### Non-React

```sh
$ npm i --save-dev eslint eslint-config-airbnb eslint-config-wyze eslint-plugin-import eslint-plugin-wyze
```
eslint eslint-config-airbnb eslint-config-wyze eslint-plugin-import eslint-plugin-wyze
```

### Flow

```sh
$ npm i --save-dev babel-eslint eslint eslint-config-wyze eslint-plugin-flowtype
```
babel-eslint eslint eslint-config-wyze eslint-plugin-flowtype
```

## Usage
Expand Down Expand Up @@ -65,18 +68,13 @@ $ npm i --save-dev babel-eslint eslint eslint-config-wyze eslint-plugin-flowtype

## License

Copyright © 2016-2017 [Neil Kistner](//github.com/wyze)

Released under the MIT license. See [license](license) for details.
MIT © [Neil Kistner](https://neilkistner.com)

[travis-image]: https://img.shields.io/travis/wyze/eslint-config-wyze.svg?style=flat-square
[travis-url]: https://travis-ci.org/wyze/eslint-config-wyze

[npm-image]: https://img.shields.io/npm/v/eslint-config-wyze.svg?style=flat-square
[npm-url]: https://npmjs.com/package/eslint-config-wyze

[deps-image]: https://img.shields.io/david/wyze/eslint-config-wyze.svg?style=flat-square
[deps-url]: https://david-dm.org/wyze/eslint-config-wyze

[depsdev-image]: https://img.shields.io/david/dev/wyze/eslint-config-wyze.svg?style=flat-square
[depsdev-url]: https://david-dm.org/wyze/eslint-config-wyze#info=devDependencies

0 comments on commit 62302e6

Please sign in to comment.