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

Commit 98fd755

Browse files
authored
Merge pull request #163 from AtomLinter/greenkeeper/eslint-config-airbnb-base-12.0.0
Update eslint-config-airbnb-base to version 12.0.0 🚀
2 parents f5b1de3 + 3514ee8 commit 98fd755

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
"tiny-promisify": "^1.0.0"
5151
},
5252
"devDependencies": {
53-
"eslint": "^4.3.0",
54-
"eslint-config-airbnb-base": "^11.3.1",
53+
"eslint": "^4.6.0",
54+
"eslint-config-airbnb-base": "^12.0.0",
5555
"eslint-plugin-import": "^2.7.0"
5656
},
5757
"eslintConfig": {

spec/linter-htmlhint-spec.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import * as path from 'path';
44

5-
const lint = require('../lib/index.js').provideLinter().lint;
5+
const { lint } = require('../lib/index.js').provideLinter();
66

77
describe('The htmlhint provider for Linter', () => {
88
beforeEach(() => {
@@ -11,8 +11,7 @@ describe('The htmlhint provider for Linter', () => {
1111
Promise.all([
1212
atom.packages.activatePackage('linter-htmlhint'),
1313
atom.packages.activatePackage('language-html')
14-
])
15-
);
14+
]));
1615
});
1716

1817
it('detects invalid coding style in bad.html and report as error', () => {

0 commit comments

Comments
 (0)