Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit 0ae035b

Browse files
committed
Prepare 7.2.2 release
1 parent e04fb91 commit 0ae035b

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

package.json

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "linter-eslint",
33
"main": "./lib/main",
4-
"version": "7.2.1",
4+
"version": "7.2.2",
55
"description": "Lint JavaScript on the fly, using ESLint",
66
"repository": "https://github.com/AtomLinter/linter-eslint.git",
77
"license": "MIT",
@@ -44,13 +44,28 @@
4444
"eslintConfig": {
4545
"rules": {
4646
"no-console": 0,
47-
"semi": [2, "never"],
47+
"semi": [
48+
2,
49+
"never"
50+
],
4851
"func-names": 0,
49-
"no-param-reassign": [2, {"props": false}],
52+
"no-param-reassign": [
53+
2,
54+
{
55+
"props": false
56+
}
57+
],
5058
"comma-dangle": 0,
5159
"no-underscore-dangle": 0,
5260
"global-require": 0,
53-
"import/no-unresolved": [2, {"ignore": ["atom"]}]
61+
"import/no-unresolved": [
62+
2,
63+
{
64+
"ignore": [
65+
"atom"
66+
]
67+
}
68+
]
5469
},
5570
"extends": "airbnb-base",
5671
"globals": {

0 commit comments

Comments
 (0)