Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .eslintignore

This file was deleted.

17 changes: 0 additions & 17 deletions .eslintrc

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to **Business Input Data Source** will be documented in this file. This changelog follows the [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Thank you for using our plugin! For any questions or contributions, feel free to visit our [GitHub repository](https://github.com/VolkovLabs/business-input).

## [5.1.0] - Unreleased

### Changed

- Update ESLint configuration ([#104](https://github.com/VolkovLabs/business-input/pull/104)).

## [5.0.0] - 2025-07-21

### Breaking Changes
Expand All @@ -11,6 +17,7 @@ All notable changes to **Business Input Data Source** will be documented in this
### Features & Enhancements

- Updated to Grafana 12 and dependencies ([#103](https://github.com/VolkovLabs/business-input/pull/103)).
- Update ESLint configuration ([#104](https://github.com/VolkovLabs/business-input/pull/104)).

## [4.5.0] - 2024-12-23

Expand Down
38 changes: 38 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import tsParser from '@typescript-eslint/parser';
import { defineConfig, globalIgnores } from 'eslint/config';
import prettierConfig from 'eslint-config-prettier/flat';
import grafanaConfig from '@grafana/eslint-config/flat.js';
import eslintConfig from '@volkovlabs/eslint-config';

/**
* Config
*/
export default defineConfig(
...grafanaConfig,
eslintConfig,
prettierConfig,
{
languageOptions: {
parser: tsParser,
parserOptions: {
project: ['tsconfig.json'],
sourceType: 'module',
},
},
rules: {
'@typescript-eslint/no-empty-object-type': 'off',
},
},
globalIgnores([
'.config/*',
'.prettierrc.js',
'coverage/*',
'dist/*',
'eslint.config.mjs',
'jest*.js',
'playwright.config.ts',
'src/__mocks__/**',
'src/**/*.test.ts*',
'test/*',
])
);
Loading
Loading