Skip to content

Commit b3e3c09

Browse files
committed
fix formatting and add/fix comments
1 parent f4722ec commit b3e3c09

File tree

20 files changed

+58
-12
lines changed

20 files changed

+58
-12
lines changed

.eslintrc.js

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Note: All paths are relative to the directory in which eslint is being run, rather than the directory where this file
2+
// lives
3+
14
module.exports = {
25
root: true,
36
env: {
@@ -7,15 +10,7 @@ module.exports = {
710
ecmaVersion: 2018,
811
},
912
extends: ['@sentry-internal/sdk'],
10-
ignorePatterns: [
11-
'coverage/**',
12-
'build/**',
13-
'dist/**',
14-
'esm/**',
15-
'examples/**',
16-
'scripts/**',
17-
'test/manual/**',
18-
],
13+
ignorePatterns: ['coverage/**', 'build/**', 'dist/**', 'esm/**', 'examples/**', 'scripts/**', 'test/manual/**'],
1914
overrides: [
2015
{
2116
files: ['*.ts', '*.tsx', '*.d.ts'],

packages/angular/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
"experimentalDecorators": true
69
}
710
}

packages/browser/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}

packages/core/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}

packages/gatsby/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
"esModuleInterop": true,
69
"jsx": "react"
710
}

packages/hub/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
"esModuleInterop": true,
69
}
710
}

packages/minimal/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}

packages/nextjs/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}

packages/node/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../tsconfig.json",
3+
34
"include": ["src/**/*"],
5+
46
"compilerOptions": {
7+
// package-specific options
58
}
69
}

0 commit comments

Comments
 (0)