xo 0.37.0 → 0.37.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.
package/config/plugins.js CHANGED
@@ -184,7 +184,12 @@ module.exports = {
184
184
  'error',
185
185
  'always',
186
186
  {
187
- ignorePackages: true
187
+ ignorePackages: true,
188
+ // TypeScript doesn't yet support using extensions and fails with error TS2691.
189
+ pattern: {
190
+ ts: 'never',
191
+ tsx: 'never'
192
+ }
188
193
  }
189
194
  ],
190
195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xo",
3
- "version": "0.37.0",
3
+ "version": "0.37.1",
4
4
  "description": "JavaScript/TypeScript linter with great defaults",
5
5
  "license": "MIT",
6
6
  "repository": "xojs/xo",