Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Add ESLint deprecation (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-vl authored Jul 25, 2023
1 parent 93d5790 commit cff95c7
Show file tree
Hide file tree
Showing 6 changed files with 1,156 additions and 1,225 deletions.
9 changes: 9 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Configuration files
jest-setup.js
jest.config.js
webpack.config.ts

# Development folders
coverage/
cypress/
dist/
8 changes: 8 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
{
"extends": "./.config/.eslintrc",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"project": "./tsconfig.json",
"sourceType": "module"
},
"plugins": ["deprecation"],
"rules": {
"deprecation/deprecation": ["warn"],
"sort-imports": [
"error",
{
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Features / Enhancements

- Add YouTube tutorial (#39)
- Update ESLint configuration (#40)
- Update ESLint configuration (#40, #41)

## 3.0.0 (2023-06-25)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Dashboard](https://github.com/VolkovLabs/volkovlabs-abc-panel/raw/main/src/img/dashboard.png)

![Grafana 10](https://img.shields.io/badge/Grafana-10.0.0-orange)
![Grafana 10](https://img.shields.io/badge/Grafana-10.0-orange)
![CI](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/CI/badge.svg)
![E2E](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/E2E/badge.svg)
[![codecov](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel/branch/main/graph/badge.svg)](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel)
Expand Down Expand Up @@ -59,7 +59,7 @@ npm run start

## Tutorial

Follow along and have your first-panel plugin built and provisioned. We created this three part series as an easy-to-follow tutorial.
Follow along and have your first-panel plugin built and provisioned. We created this three-part series as an easy-to-follow tutorial.

[![Build a panel plugin, part 1 | Grafana Crash Course for Developers](https://raw.githubusercontent.com/volkovlabs/volkovlabs-abc-panel/main/img/part1.png)](https://youtu.be/KnaPBKoXuEw)

Expand Down
Loading

0 comments on commit cff95c7

Please sign in to comment.