standard-tsx 0.0.6 → 0.0.7

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/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.0.7
2
+ * [disable reportUnusedDisableDirectives](https://github.com/extremeheat/standard-tsx/commit/98e40d212ea43f3a2cc912e31d076539a4e430fb) (thanks @extremeheat)
3
+ * [Add linter options for ESLint configuration to skip unused flag warnings](https://github.com/extremeheat/standard-tsx/commit/1df2356ffb05f072be812d9fb61e3ff2f9639ec7) (thanks @extremeheat)
4
+
1
5
  ## 0.0.6
2
6
  * [Disable duplicate ts rules (#14)](https://github.com/extremeheat/standard-tsx/commit/625d956de1b1f98e57af040d7284d1fec0b93274) (thanks @extremeheat)
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "standard-tsx",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "standardjs lint with TypeScript and JSX file support (with no new typescript rules)",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -35,7 +35,10 @@ async function main () {
35
35
  overrideConfigFile: path.join(__dirname, './eslint.config.js'),
36
36
  fix: fixFlag,
37
37
  overrideConfig: {
38
- rules: customRules
38
+ rules: customRules,
39
+ linterOptions: {
40
+ reportUnusedDisableDirectives: 'off'
41
+ }
39
42
  }
40
43
  })
41
44