We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2d3039 commit 684f906Copy full SHA for 684f906
.eslintrc.js
@@ -20,10 +20,10 @@ module.exports = {
20
extends: ['plugin:@typescript-eslint/recommended', 'prettier/@typescript-eslint'],
21
plugins: ['@typescript-eslint'],
22
parser: '@typescript-eslint/parser',
23
+ parserOptions: {
24
+ project: './tsconfig.json',
25
+ },
26
rules: {
- parserOptions: {
- project: './tsconfig.json',
- },
27
// We want to prevent async await usage in our files to prevent uncessary bundle size. Turned off in tests.
28
'sentry-sdk/no-async-await': 'error',
29
0 commit comments