File tree Expand file tree Collapse file tree 8 files changed +184
-186
lines changed Expand file tree Collapse file tree 8 files changed +184
-186
lines changed Original file line number Diff line number Diff line change 5
5
- image : circleci/node:8
6
6
steps :
7
7
- checkout
8
- - run : npm install
8
+ - run : npm ci
9
9
- run : npm run lint
10
10
- persist_to_workspace :
11
11
root : ~/
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ Thumbs.db
7
7
.DS_Store
8
8
9
9
10
-
11
-
12
10
# ###################################
13
11
# ###################################
14
12
# ## Git
@@ -17,30 +15,6 @@ Thumbs.db
17
15
* .orig
18
16
19
17
20
-
21
-
22
- # ###################################
23
- # ###################################
24
- # ## Sublime Text
25
- # ###################################
26
- # ###################################
27
- # cache files for sublime text
28
- * .tmlanguage.cache
29
- * .tmPreferences.cache
30
- * .stTheme.cache
31
-
32
- # workspace files are user-specific
33
- * .sublime-workspace
34
-
35
- # sublime project files
36
- * .sublime-project
37
-
38
- # sftp configuration file
39
- sftp-config.json
40
-
41
-
42
-
43
-
44
18
# ###################################
45
19
# ###################################
46
20
# ## Node
@@ -58,13 +32,3 @@ build/Release
58
32
59
33
# Dependency directory
60
34
node_modules
61
-
62
-
63
-
64
-
65
- # ###################################
66
- # ###################################
67
- # ## Mocha
68
- # ###################################
69
- # ###################################
70
- mocha.json
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
6
6
[ ![ license] ( https://img.shields.io/github/license/tclindner/npm-package-json-lint-config-tc.svg?maxAge=2592000&style=flat-square )] ( https://github.com/tclindner/npm-package-json-lint-config-tc/blob/master/LICENSE )
7
7
[ ![ npm] ( https://img.shields.io/npm/v/npm-package-json-lint-config-tc.svg?maxAge=2592000?style=flat-square )] ( https://www.npmjs.com/package/npm-package-json-lint-config-tc )
8
- [ ![ Travis ] ( https://img.shields.io/travis /tclindner/npm-package-json-lint-config-tc.svg?maxAge=2592000? style=flat-square )] ( https://travis-ci.org /tclindner/npm-package-json-lint-config-tc )
8
+ [ ![ CircleCI ] ( https://circleci.com/gh /tclindner/npm-package-json-lint-config-tc.svg?style=svg )] ( https://circleci.com/gh /tclindner/npm-package-json-lint-config-tc )
9
9
[ ![ Dependency Status] ( https://david-dm.org/tclindner/npm-package-json-lint-config-tc.svg?style=flat-square )] ( https://david-dm.org/tclindner/npm-package-json-lint-config-tc )
10
10
[ ![ devDependency Status] ( https://david-dm.org/tclindner/npm-package-json-lint-config-tc/dev-status.svg?style=flat-square )] ( https://david-dm.org/tclindner/npm-package-json-lint-config-tc#info=devDependencies )
11
11
Original file line number Diff line number Diff line change @@ -30,16 +30,19 @@ const config = {
30
30
'scripts-type' : 'error' ,
31
31
'version-type' : 'error' ,
32
32
'valid-values-author' : [ 'error' , [ 'Thomas Lindner' ] ] ,
33
- 'valid-values-engines' : [ 'error' , [
34
- {
35
- node : '>=6.0.0' ,
36
- npm : '>=3.0.0'
37
- } ,
38
- {
39
- node : '>=8.0.0' ,
40
- npm : '>=6.0.0'
41
- }
42
- ] ] ,
33
+ 'valid-values-engines' : [
34
+ 'error' ,
35
+ [
36
+ {
37
+ node : '>=6.0.0' ,
38
+ npm : '>=3.0.0'
39
+ } ,
40
+ {
41
+ node : '>=8.0.0' ,
42
+ npm : '>=6.0.0'
43
+ }
44
+ ]
45
+ ] ,
43
46
'valid-values-private' : [ 'error' , [ false ] ] ,
44
47
'prefer-no-version-zero-dependencies' : 'warning' ,
45
48
'prefer-caret-version-dependencies' : 'error' ,
You can’t perform that action at this time.
0 commit comments