Skip to content

Commit 4aaf1e7

Browse files
committed
chore: lint [skip ci]
1 parent acad9fa commit 4aaf1e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/minimap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export default class Minimap {
209209
this.adapter = new StableAdapter(this.textEditor)
210210
} else {
211211
// TODO remove LegacyAdapter in the next major version
212-
atom.notifications.addWarning("LegacyAdapter of Minimap is deprecated and will be removed in the next major version. Please upgrade Atom to the latest version.")
212+
atom.notifications.addWarning('LegacyAdapter of Minimap is deprecated and will be removed in the next major version. Please upgrade Atom to the latest version.')
213213
const LegacyAdapter = require('./adapters/legacy-adapter')
214214
this.adapter = new LegacyAdapter(this.textEditor)
215215
}

spec/minimap-main-spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ describe('Minimap package', () => {
120120
it('returns the minimap public exports', () => {
121121
const publicExports = Object.keys(minimapPackage.provideMinimapServiceV1())
122122
const allExports = Object.keys(minimapPackage)
123-
expect(publicExports.every((str) => { return allExports.includes(str) || console.log(str) } )).toBeTruthy()
123+
expect(publicExports.every((str) => { return allExports.includes(str) || console.log(str) })).toBeTruthy()
124124
})
125125

126126
it('creates standalone minimap with provided text editor', () => {

0 commit comments

Comments
 (0)