Skip to content

Commit

Permalink
🔖 release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yanni4night committed Jun 29, 2017
1 parent 4731154 commit 3bd9098
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [2.1.0] - 2017-06-29
### Added
- add `no-redeclare`
- add `no-duplicate-imports`
- add `default-case`
- add `no-lone-blocks`
- add `no-self-compare`
- add `no-alert`
- add `no-void`

### Changed
- test

## [2.0.4] - 2017-04-18
### Changed
- set `react-native/no-inline-styles` to `1` instead of `2`
Expand Down Expand Up @@ -49,11 +62,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- initialize this project


[2.1.0]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.4...2.1.0
[2.0.4]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.3...2.0.4
[2.0.3]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.2...2.0.3
[2.0.2]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/super-fe/eslint-config-superfe-rn/compare/1.1.1...2.0.0
[1.1.1]: https://github.com/super-fe/eslint-config-superfe-rn/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/super-fe/eslint-config-superfe-rn/compare/1.0.0...1.1.0
[Unreleased]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.0.4...HEAD
[Unreleased]: https://github.com/super-fe/eslint-config-superfe-rn/compare/2.1.0...HEAD
7 changes: 7 additions & 0 deletions eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-octal-escape": 2,
"no-redeclare": 2,
"no-duplicate-imports": 2,
"default-case": 2,
"no-lone-blocks": 2,
"no-self-compare": 2,
"no-alert": 2,
"no-void": 2,
"no-proto": 2,
"no-with": 2,
"prefer-promise-reject-errors": 2,
Expand Down
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
module.exports = require('./eslint.json');
'use strict';
module.exports = require('./eslint.json');
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "eslint-config-superfe-rn",
"version": "2.0.4",
"version": "2.1.0",
"description": "Eslint configration for Super-FE's react-native apps",
"scripts": {
"test": "ava && eslint index.js -c eslint.json",
"prepare": "npm test"
},
"pre-commit": "npm run prepare",
"repository": {
"type": "git",
"url": "git+https://github.com/super-fe/eslint-config-superfe-rn.git"
Expand All @@ -30,5 +33,16 @@
"eslint-plugin-promise": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-native": "*"
},
"devDependencies": {
"ava": "^0.20.0",
"babel-eslint": "*",
"eslint": "*",
"eslint-plugin-babel": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-react": "*",
"eslint-plugin-react-native": "*",
"graceful-fs": "^4.1.11",
"pre-commit": "^1.2.2"
}
}

0 comments on commit 3bd9098

Please sign in to comment.