Skip to content

Commit

Permalink
Merge pull request newrelic#125 from jmartin4563/nestjs-config-file
Browse files Browse the repository at this point in the history
feat: Add Nest.js application example demonstrating file based agent config
  • Loading branch information
bizob2828 committed Aug 21, 2023
2 parents c294880 + a750a32 commit 2a19416
Show file tree
Hide file tree
Showing 17 changed files with 11,808 additions and 0 deletions.
25 changes: 25 additions & 0 deletions nestjs-config-file/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit 2a19416

Please sign in to comment.