This repository was archived by the owner on Aug 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
'use babel' ;
2
2
3
3
// eslint-disable-next-line import/no-extraneous-dependencies, import/extensions
4
- import { CompositeDisposable } from 'atom' ;
4
+ import {
5
+ CompositeDisposable ,
6
+ } from 'atom' ;
5
7
6
8
// Some internal variables
7
9
let subscriptions ;
@@ -29,8 +31,8 @@ export default {
29
31
atom . notifications . addError (
30
32
'You are using an unsupported version of puppet-lint!' ,
31
33
{
32
- detail : 'Please upgrade your version of puppet-lint to >= 2.0.0.\n' +
33
- 'Check the README for further information.' ,
34
+ detail : 'Please upgrade your version of puppet-lint to >= 2.0.0.\n'
35
+ + 'Check the README for further information.' ,
34
36
} ,
35
37
) ;
36
38
}
Original file line number Diff line number Diff line change 27
27
"readmeFilename" : " README.md" ,
28
28
"dependencies" : {
29
29
"atom-linter" : " ^10.0.0" ,
30
- "atom-package-deps" : " ^4 .0.1 "
30
+ "atom-package-deps" : " ^5 .0.0 "
31
31
},
32
32
"package-deps" : [
33
33
" linter" ,
34
34
" language-puppet"
35
35
],
36
36
"devDependencies" : {
37
37
"eslint" : " ^5.0.0" ,
38
- "eslint-config-airbnb-base" : " ^12 .0.0" ,
38
+ "eslint-config-airbnb-base" : " ^13 .0.0" ,
39
39
"eslint-plugin-import" : " ^2.7.0" ,
40
40
"jasmine-fix" : " ^1.3.0"
41
41
},
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ module.exports = {
9
9
{
10
10
"devDependencies" : true
11
11
}
12
- ]
12
+ ] ,
13
+ "object-curly-newline" : [ "error" , {
14
+ "ImportDeclaration" : "never" ,
15
+ } ]
13
16
}
14
17
} ;
You can’t perform that action at this time.
0 commit comments