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

Commit 6e08070

Browse files
greenkeeperio-botArcanemagus
authored andcommitted
Update eslint-config-airbnb-base to version 8.0.0 🚀 (#141)
* chore(package): update eslint-config-airbnb-base to version 8.0.0 * Update peerDependencies * Fix lint issues
1 parent 3d9ec4d commit 6e08070

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

‎lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use babel';
22

3+
// eslint-disable-next-line import/extensions, import/no-extraneous-dependencies
34
import { CompositeDisposable } from 'atom';
45

56
const grammarScopes = [];

‎package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
"tiny-promisify": "^0.1.1"
5252
},
5353
"devDependencies": {
54-
"eslint": "^3.5.0",
55-
"eslint-config-airbnb-base": "^7.1.0",
56-
"eslint-plugin-import": "^1.14.0"
54+
"eslint": "^3.6.0",
55+
"eslint-config-airbnb-base": "^8.0.0",
56+
"eslint-plugin-import": "^1.16.0"
5757
},
5858
"eslintConfig": {
5959
"rules": {
@@ -69,15 +69,13 @@
6969
"atom"
7070
]
7171
}
72-
],
73-
"import/no-extraneous-dependencies": "off"
72+
]
7473
},
7574
"extends": "airbnb-base",
7675
"globals": {
7776
"atom": true
7877
},
7978
"env": {
80-
"es6": true,
8179
"node": true
8280
}
8381
},

‎spec/linter-htmlhint-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import * as path from 'path';
44

5-
const lint = require(path.join('..', 'lib', 'index.js')).provideLinter().lint;
5+
const lint = require('../lib/index.js').provideLinter().lint;
66

77
describe('The htmlhint provider for Linter', () => {
88
beforeEach(() => {

0 commit comments

Comments
 (0)