-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy path.eslintrc.json
36 lines (36 loc) · 1 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"root": true,
"env": {
"node": true
},
"extends": "standard",
"plugins": [
"license-header"
],
"rules": {
"license-header/header": [ "error", "./dev-utils/license-header.js" ]
},
"ignorePatterns": [
"/*.example.js", // a pattern for uncommited local dev files to avoid linting
"/.nyc_output",
"/build",
"node_modules",
"elastic-apm-node.js",
"/examples/esbuild/dist",
"/examples/typescript/dist",
"/examples/nextjs",
"/examples/an-azure-function-app",
"/lib/opentelemetry-bridge/opentelemetry-core-mini",
"/test/babel/out.js",
"/test/lambda/fixtures/esbuild-bundled-handler/hello.js",
"/test/instrumentation/modules/next/a-nextjs-app/pages",
"/test/instrumentation/modules/next/a-nextjs-app/components",
"/test/sourcemaps/fixtures/lib",
"/test/sourcemaps/fixtures/src",
"/test/stacktraces/fixtures/dist",
"/test/types/transpile/index.js",
"/test/types/transpile-default/index.js",
"/test_output",
"tmp"
]
}