Skip to content

Commit

Permalink
style: migrate to @bifravst/eslint-config-typescript and @bifravst/pr…
Browse files Browse the repository at this point in the history
…ettier-config
  • Loading branch information
coderbyheart committed Feb 19, 2024
1 parent e7f6b21 commit 1fca089
Show file tree
Hide file tree
Showing 7 changed files with 495 additions and 393 deletions.
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

15 changes: 0 additions & 15 deletions .eslintrc

This file was deleted.

2 changes: 1 addition & 1 deletion cdk/listLambdaDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export const listLambdaDependencies = (entryFile: string): string[] => {
filename: entryFile,
directory: process.cwd(),
tsConfig: path.join(process.cwd(), 'tsconfig.json'),
filter: (path) => !path.includes('node_modules'), // do not include node_modules
filter: (path: string) => !path.includes('node_modules'), // do not include node_modules
})
}
7 changes: 7 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import config from '@bifravst/eslint-config-typescript'
export default [
...config,
{
ignores: ['dist/**', 'cdk.out/**'],
},
]
Loading

0 comments on commit 1fca089

Please sign in to comment.