Skip to content

Commit 8ac546e

Browse files
committed
fixed object-curly-newline rule
1 parent 99d980c commit 8ac546e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Eslint config for ReactJS ![version](https://img.shields.io/badge/version-1.0.1-blue)
1+
# Eslint config for ReactJS ![version](https://img.shields.io/badge/version-1.0.2-blue)
22

33
[![N|Solid](https://avatars3.githubusercontent.com/u/39901497?s=200&v=4)](https://github.com/kakadu-dev)
44

@@ -19,7 +19,7 @@ This package is a necessary tool for writing quality code.
1919
## Installing
2020

2121
```sh
22-
$ npm install @kakadu-dev/eslint-config-react-js@1.0.1
22+
$ npm install @kakadu-dev/eslint-config-react-js@1.0.2
2323
```
2424

2525
## Built With

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module.exports = {
6161
'arrow-parens': [2, 'as-needed'],
6262
'semi': [2, 'never'],
6363
'no-use-before-define': [2, { 'functions': false }],
64-
'object-curly-newline': [2, { 'multiline': true }],
64+
'object-curly-newline': [2, { 'consistent': true }],
6565
'operator-linebreak': [2, 'after'],
6666
'no-multi-spaces': [2, { exceptions: { 'VariableDeclarator': true } }],
6767
'indent': [2, 'tab', { 'SwitchCase': 1 }],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kakadu-dev/eslint-config-react-js",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Eslint configuration for ReactJS applications",
55
"main": "index.js",
66
"publishConfig": {

0 commit comments

Comments
 (0)