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

Update eslint-config-airbnb-base to version 12.0.0 🚀 #163

Merged
merged 3 commits into from
Sep 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"tiny-promisify": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint": "^4.6.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0"
},
"eslintConfig": {
Expand Down
5 changes: 2 additions & 3 deletions spec/linter-htmlhint-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as path from 'path';

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

describe('The htmlhint provider for Linter', () => {
beforeEach(() => {
Expand All @@ -11,8 +11,7 @@ describe('The htmlhint provider for Linter', () => {
Promise.all([
atom.packages.activatePackage('linter-htmlhint'),
atom.packages.activatePackage('language-html')
])
);
]));
});

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