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

Commit e6fa8c4

Browse files
authored
Merge pull request #35 from AtomLinter/renovate/eslint-config-airbnb-base-13.x
chore(deps): update dependency eslint-config-airbnb-base to v13
2 parents c815a40 + 5deceba commit e6fa8c4

File tree

4 files changed

+116
-11
lines changed

4 files changed

+116
-11
lines changed

lib/init.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ export default {
5454
if (textEditor.getText() !== fileText) {
5555
// File contents changed since lint started, print a warning to the console
5656
// eslint-disable-next-line no-console
57-
console.warn('linter-moonscript:: The file was modified since the ' +
58-
'request was sent to check it. Since any results would no longer ' +
59-
'be valid, they are not being updated. Please save the file ' +
60-
'again to update the results.');
57+
console.warn('linter-moonscript:: The file was modified since the '
58+
+ 'request was sent to check it. Since any results would no longer '
59+
+ 'be valid, they are not being updated. Please save the file '
60+
+ 'again to update the results.');
6161
return null;
6262
}
6363

package-lock.json

Lines changed: 106 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
},
6969
"devDependencies": {
7070
"eslint": "4.19.1",
71-
"eslint-config-airbnb-base": "12.1.0",
71+
"eslint-config-airbnb-base": "13.1.0",
7272
"eslint-plugin-import": "2.16.0",
7373
"jasmine-fix": "1.3.1"
7474
},

spec/linter-moonscript-spec.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
'use babel';
22

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

9+
// eslint-disable-next-line import/named
710
import { provideLinter } from '../lib/init';
811

912
const goodPath = join(__dirname, 'fixtures', 'good.moon');

0 commit comments

Comments
 (0)