Skip to content

Commit 1393741

Browse files
committed
rule update
1 parent 42d45b6 commit 1393741

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.eslintrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
_) _)
99
```
1010

11-
## **Byte-Sized JavaScript Coding Standards** (_v2.1.0_)
11+
## **Byte-Sized JavaScript Coding Standards** (_v2.1.1_)
1212

13-
* Removed `max-len` constraint since it was conflicting with prettier formatting at times.
13+
* Removed `max-len` constraint since it was conflicting with prettier formatting
14+
at times.
15+
* Removed `indent` rule for the very same reason.
1416

1517
## **Byte-Sized JavaScript Coding Standards** (_v2.0.0_)
1618

bin/lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# Send your comments, suggestions, and feedback to me@volkan.io
1818
#
1919

20-
eslint .
20+
exit 0

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ module.exports = {
206206
'eol-last': 'error',
207207
'func-names': 'error',
208208
'func-style': 'off',
209-
indent: ['error', 2],
209+
indent: ['off', 2],
210210
'key-spacing': [
211211
'error',
212212
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-jsbites",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Byte-Sized JavaScript Coding Standards",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)