Skip to content

Commit

Permalink
fix rules
Browse files Browse the repository at this point in the history
  • Loading branch information
fs-eire committed Nov 8, 2023
1 parent 22d7320 commit 7ffcadd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 3 additions & 5 deletions js/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ module.exports = {
'use-isnan': 'error'
},
overrides: [{
files: ['web/lib/**/*.ts'],
excludedFiles: 'web/lib/wasm/proxy-worker/**/*',
parserOptions: { 'project': 'web/tsconfig.json' },
},{
files: ['node/**/*.ts'],
env: { 'es6': true, 'node': true }
}, {
Expand Down Expand Up @@ -148,7 +144,9 @@ module.exports = {
'no-unused-expressions': 'off',
}
}, {
files: ['web/lib/**/*.ts'], rules: {
files: ['web/lib/**/*.ts'],
excludedFiles: 'web/lib/wasm/proxy-worker/**/*',
parserOptions: { 'project': 'web/tsconfig.json' },rules: {
'no-underscore-dangle': 'off',
}
}, {
Expand Down
3 changes: 2 additions & 1 deletion js/web/script/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.tools.json",
"compilerOptions": {
"sourceMap": true
"sourceMap": true,
"noUnusedParameters": false
}
}

0 comments on commit 7ffcadd

Please sign in to comment.