Skip to content

Commit

Permalink
v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ggkovacs committed Jul 15, 2017
1 parent d8061a5 commit ffdfec6
Show file tree
Hide file tree
Showing 8 changed files with 532 additions and 319 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
8.0.0 / 2017-07-15
==================
- Upgrade packages in package.json
- Moved ecmaFeatures under parserOptions

7.0.2 / 2017-01-17
==================
- Disable `no-mixed-operators`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [eslint](http://eslint.org)-config-mito [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coverage-image]][coverage-url]
Version: **7.0.2**
Version: **8.0.0**

This package provides Mito's .eslintrc as an extensible shared config.

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [eslint](http://eslint.org)-config-mito documentation
> Generated: 2017-01-17 (v7.0.1)
> Generated: 2017-07-15 (v8.0.0)
* [`default` configurations](default.md)
* [`legacy` configurations](legacy.md)
Expand Down
4 changes: 2 additions & 2 deletions docs/default.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [eslint](http://eslint.org)-config-mito `default` configurations
> Generated: 2017-01-17 (v7.0.1)
> Generated: 2017-07-15 (v8.0.0)
## Table of contents

Expand Down Expand Up @@ -2625,7 +2625,7 @@
**Value:**
```javascript
[
"error",
"off",
{
"groups": [
[
Expand Down
4 changes: 2 additions & 2 deletions docs/legacy.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [eslint](http://eslint.org)-config-mito `legacy` configurations
> Generated: 2017-01-17 (v7.0.1)
> Generated: 2017-07-15 (v8.0.0)
## Table of contents

Expand Down Expand Up @@ -2591,7 +2591,7 @@
**Value:**
```javascript
[
"error",
"off",
{
"groups": [
[
Expand Down
20 changes: 11 additions & 9 deletions legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ module.exports = {
'./rules/style',
'./rules/variables'
].map(require.resolve),
'env': {
'browser': true,
'node': true,
'amd': false,
'mocha': false,
'jasmine': false
env: {
browser: true,
node: true,
amd: false,
mocha: false,
jasmine: false
},
'ecmaFeatures': {},
'globals': {},
'rules': {}
parserOptions: {
ecmaFeatures: {}
},
globals: {},
rules: {}
};
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-mito",
"version": "7.0.2",
"version": "8.0.0",
"description": "This package provides Mito's .eslintrc as an extensible shared config.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,11 +30,11 @@
"homepage": "https://github.com/hellowearemito/eslint-config-mito",
"devDependencies": {
"coveralls": "^2.11.15",
"eslint": "^3.13.1",
"nyc": "^10.0.0",
"eslint": "^4.2.0",
"nyc": "^11.0.3",
"pre-commit": "^1.2.2",
"progress": "^1.1.8",
"sync-request": "^3.0.1",
"progress": "^2.0.0",
"sync-request": "^4.1.0",
"xtend": "^4.0.1"
},
"pre-commit": [
Expand Down
Loading

0 comments on commit ffdfec6

Please sign in to comment.