Skip to content

Commit 61bd790

Browse files
authored
Merge pull request #5 from cybertec-postgresql/fix-local-build
fix build and ci failures
2 parents 3d97ce9 + 70babed commit 61bd790

File tree

6 files changed

+1589
-1161
lines changed

6 files changed

+1589
-1161
lines changed

.config/eslint.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,24 @@ import { defineConfig } from 'eslint/config';
99
import grafanaConfig from '@grafana/eslint-config/flat.js';
1010

1111
export default defineConfig([
12+
{
13+
ignores: [
14+
'node_modules/**',
15+
'dist/**',
16+
'build/**',
17+
'*.tsbuildinfo',
18+
'coverage/**',
19+
'.nyc_output/**',
20+
'**/*.min.js',
21+
'**/*.min.css',
22+
'*.zip',
23+
'*.tar.gz',
24+
'*.log',
25+
'logs/**',
26+
'.cache/**',
27+
'.eslintcache',
28+
],
29+
},
1230
...grafanaConfig,
1331
{
1432
rules: {

.eslintignore

Lines changed: 0 additions & 38 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ dist/
99
build/
1010
*.tsbuildinfo
1111

12+
# Lint cache
13+
.eslintcache
14+
1215
# IDE
1316
.vscode/*
1417
!.vscode/settings.json

0 commit comments

Comments
 (0)