Skip to content

Commit

Permalink
ci: disable type-aware linting for a3p-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Oct 15, 2024
1 parent c4690ab commit d62b5d1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ module.exports = {
'./packages/*/tsconfig.json',
'./packages/*/tsconfig.json',
'./packages/wallet/*/tsconfig.json',
'./a3p-integration/proposals/*/tsconfig.json',
'./tsconfig.json',
],
tsconfigRootDir: __dirname,
Expand Down Expand Up @@ -240,6 +239,17 @@ module.exports = {
project: false,
},
},
{
files: ['a3p-integration/**'],
extends: ['plugin:@typescript-eslint/disable-type-checked'],
parserOptions: {
EXPERIMENTAL_useProjectService: false,
project: false,
},
rules: {
'@jessie.js/safe-await-separator': 'off',
},
},
{
// Types files have no promises to lint and that linter chokes on the .d.ts twin.
// Maybe due to https://github.com/typescript-eslint/typescript-eslint/issues/7435
Expand Down

0 comments on commit d62b5d1

Please sign in to comment.