xo 0.33.0 → 0.33.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli-main.js +12 -6
  2. package/package.json +1 -1
package/cli-main.js CHANGED
@@ -56,13 +56,16 @@ const cli = meow(`
56
56
  type: 'string'
57
57
  },
58
58
  env: {
59
- type: 'string'
59
+ type: 'string',
60
+ isMultiple: true
60
61
  },
61
62
  global: {
62
- type: 'string'
63
+ type: 'string',
64
+ isMultiple: true
63
65
  },
64
66
  ignore: {
65
- type: 'string'
67
+ type: 'string',
68
+ isMultiple: true
66
69
  },
67
70
  space: {
68
71
  type: 'string'
@@ -77,10 +80,12 @@ const cli = meow(`
77
80
  type: 'string'
78
81
  },
79
82
  plugin: {
80
- type: 'string'
83
+ type: 'string',
84
+ isMultiple: true
81
85
  },
82
86
  extend: {
83
- type: 'string'
87
+ type: 'string',
88
+ isMultiple: true
84
89
  },
85
90
  open: {
86
91
  type: 'boolean'
@@ -89,7 +94,8 @@ const cli = meow(`
89
94
  type: 'boolean'
90
95
  },
91
96
  extension: {
92
- type: 'string'
97
+ type: 'string',
98
+ isMultiple: true
93
99
  },
94
100
  esnext: {
95
101
  type: 'boolean'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xo",
3
- "version": "0.33.0",
3
+ "version": "0.33.1",
4
4
  "description": "JavaScript/TypeScript linter with great defaults",
5
5
  "license": "MIT",
6
6
  "repository": "xojs/xo",