Skip to content

Commit

Permalink
Merge branch 'main' into K12-58/pin-ay23-version
Browse files Browse the repository at this point in the history
  • Loading branch information
rnathuji committed Jun 10, 2024
2 parents eced304 + 87f490d commit d91325a
Show file tree
Hide file tree
Showing 4 changed files with 227 additions and 486 deletions.
32 changes: 0 additions & 32 deletions .eslintrc.js

This file was deleted.

37 changes: 37 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
module.exports = [
{
...require('eslint-config-love')
},
{
files: [
'**/*.ts',
'**/*.tsx'
],
rules: {
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/space-before-function-paren': [
'error',
{
anonymous: 'always',
named: 'never',
asyncArrow: 'always'
}
],
'@typescript-eslint/ban-tslint-comment': 'off',
}
},
{
ignores: [
'dist/**',
'vite.config.ts',
'jest.config.ts',
'jest.setup.ts',
'jest.polyfills.js',
'jest.resolver.js',
'playwright.config.ts',
'coverage',
'eslint.config.cjs'
]

}
]
Loading

0 comments on commit d91325a

Please sign in to comment.