Skip to content

Commit e7bf2c9

Browse files
chore(release): 103.0.0 (#107)
1 parent 120071b commit e7bf2c9

File tree

8 files changed

+694
-425
lines changed

8 files changed

+694
-425
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](http://semver.org). Except add new
66
rule (it is breaking changed by default).
77

8+
## 103.0.0 - 2019-06-28
9+
10+
- Chore: minimum require `eslint` version is now `^6.0.1`.
11+
- Chore: minimum require `eslint-plugin-ava` version is now `^7.1.0`.
12+
- Chore: minimum require `eslint-plugin-html` version is now `^6.0.0`.
13+
- Chore: minimum require `eslint-plugin-import` version is now `^2.18.0`.
14+
- Chore: minimum require `eslint-plugin-jest` version is now `^22.7.1`.
15+
- Chore: minimum require `eslint-plugin-promise` version is now `^4.2.1`.
16+
- Chore: minimum require `eslint-plugin-react` version is now `^7.14.2`.
17+
- Chore: minimum require `eslint-plugin-unicorn` version is now `^9.1.1`.
18+
- Chore: minimum require `eslint-plugin-jsx-a11y` version is now `^6.2.3`.
19+
- Changed: remove `modifyPresetRules` utils, `eslint@6` supports nested plugin rules override.
20+
821
## 102.0.0 - 2019-06-03
922

1023
- Added: `unicorn/prefer-event-key` rule.

__tests__/index.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { configs } from "..";
2-
import eslint from "eslint";
31
import fs from "fs";
42
import path from "path";
3+
import eslint from "eslint";
54
import test from "ava";
5+
import { configs } from "..";
66

77
function isObject(obj) {
88
return typeof obj === "object" && obj !== null;

__tests__/utils.test.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const lodash = require("./lib/config/lodash");
99
const markdown = require("./lib/config/markdown");
1010
const node = require("./lib/config/node");
1111
const react = require("./lib/config/react");
12-
const utils = require("./lib/utils");
1312

1413
const configs = {
1514
all,
@@ -23,4 +22,4 @@ const configs = {
2322
react
2423
};
2524

26-
module.exports = { configs, utils };
25+
module.exports = { configs };

lib/config/rules/react.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ module.exports = {
209209
"error",
210210
{ props: "never", children: "never" }
211211
],
212+
// Enforce or disallow newlines inside of curly braces in JSX attributes and expressions (fixable)
213+
// Disable in favor `prettier`
214+
"react/jsx-curly-newline": "off",
212215
// Enforce or disallow spaces inside of curly braces in JSX attributes
213216
// Disable in favor `prettier`
214217
"react/jsx-curly-spacing": "off",

lib/utils.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)