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

Commit f7d5011

Browse files
committed
style: fix linting issues
1 parent a0c21c9 commit f7d5011

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

lib/main.js

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

33
// eslint-disable-next-line import/extensions, import/no-extraneous-dependencies
44
import { CompositeDisposable } from 'atom';
5-
import { dirname, extname, resolve, isAbsolute } from 'path';
5+
import {
6+
dirname, extname, resolve, isAbsolute,
7+
} from 'path';
68

79
let helpers = null;
810
let clangFlags = null;

spec/linter-clang-spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
'use babel';
22

33
import { join } from 'path';
4-
// eslint-disable-next-line no-unused-vars
5-
import { it, fit, wait, beforeEach, afterEach } from 'jasmine-fix';
4+
import {
5+
// eslint-disable-next-line no-unused-vars
6+
it, fit, wait, beforeEach, afterEach,
7+
} from 'jasmine-fix';
68

79
const { lint } = require('../lib/main').provideLinter();
810

0 commit comments

Comments
 (0)