Skip to content

Commit 8b82a80

Browse files
committed
fix: typo in rule definition
Eslint is confusing. It'll accept off, but not on. It really wants a numeric value where 0 is off, 1 is warn, 2 is error
1 parent e89aec6 commit 8b82a80

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
- main
66
# Only attempt publish when the package.json has changed
77
paths:
8-
- 'javascript/**'
9-
- 'typescript/**'
108
- 'css/**'
11-
- 'react/**'
9+
- 'javascript/**'
1210
- 'node/**'
11+
- 'react/**'
12+
- 'typescript/**'
1313
jobs:
1414
publish:
1515
runs-on: ubuntu-latest

typescript/rules/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
],
66

77
"rules": {
8-
"@typescript-eslint/no-explicit-any": "0"
8+
"@typescript-eslint/no-explicit-any": 0
99
},
1010

1111
"plugins": [

0 commit comments

Comments
 (0)