diff options
Diffstat (limited to '.licenserc.json')
| -rw-r--r-- | .licenserc.json | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/.licenserc.json b/.licenserc.json new file mode 100644 index 0000000..b360384 --- /dev/null +++ b/.licenserc.json @@ -0,0 +1,61 @@ +{ + "**/*.{go,cs,h,cpp,js,ts,tsx,rs}": [ + "// Copyright The OpenTelemetry Authors", + "// SPDX-License-Identifier: Apache-2.0" + ], + "**/*.php": [ + "<?php", + "// Copyright The OpenTelemetry Authors", + "// SPDX-License-Identifier: Apache-2.0" + ], + "**/*.java": [ + "/*", + "* Copyright The OpenTelemetry Authors", + "* SPDX-License-Identifier: Apache-2.0", + "*/" + ], + "**/*.py": [ + "#!/usr/bin/python", + "# Copyright The OpenTelemetry Authors", + "# SPDX-License-Identifier: Apache-2.0" + ], + "**/*.sh": [ + "#!/bin/sh", + "# Copyright The OpenTelemetry Authors", + "# SPDX-License-Identifier: Apache-2.0" + ], + "**/*.{ex,exs,rb,yaml,yml,yamllint}": [ + "# Copyright The OpenTelemetry Authors", + "# SPDX-License-Identifier: Apache-2.0" + ], + "**/*.sql": [ + "-- Copyright The OpenTelemetry Authors", + "-- SPDX-License-Identifier: Apache-2.0" + ], + "**/{Dockerfile,Makefile}": [ + "# Copyright The OpenTelemetry Authors", + "# SPDX-License-Identifier: Apache-2.0" + ], + "ignore": [ + "node_modules/", + "src/accounting/bin/", + "src/accounting/obj/", + "/src/accounting/src/protos/", + "src/cart/src/obj/", + "src/cart/tests/obj/", + "src/currency/build/", + "src/checkout/genproto/", + "src/flagd-ui/assets/vendor/", + "src/product-catalog/genproto/", + "src/react-native-app/ios/Pods/", + "src/react-native-app/ios/build/", + "src/react-native-app/android/app/build/", + "src/react-native-app/android/.gradle/", + "src/react-native-app/.expo/", + "src/react-native-app/expo-env.d.ts", + "src/recommendation/demo_pb2.py", + "src/recommendation/demo_pb2_grpc.py", + "src/frontend/protos/demo.ts", + "internal/tools/" + ] + }
\ No newline at end of file |
