Skip to content

Commit

Permalink
Update ESLint configuration (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-vl authored Jul 24, 2023
1 parent 7448ea6 commit 2aa0a1a
Show file tree
Hide file tree
Showing 6 changed files with 1,563 additions and 1,351 deletions.
13 changes: 13 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Configuration files
jest-setup.js
jest.config.js
webpack.config.ts

# Development folders
coverage/
cypress/
dist/

# Bundled plugins
src/marcusolsson-dynamictext-panel
src/volkovlabs-rss-datasource
21 changes: 19 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
{
"extends": "./.config/.eslintrc"
}
"extends": "./.config/.eslintrc",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"project": "./tsconfig.json",
"sourceType": "module"
},
"plugins": ["deprecation"],
"rules": {
"deprecation/deprecation": ["error"],
"sort-imports": [
"error",
{
"ignoreCase": true,
"ignoreDeclarationSort": true
}
]
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 3.1.0 (IN PROGRESS)

### Features / Enhancements

- Update ESLint configuration (#77)

## 3.0.0 (2023-06-25)

### Features / Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![App](https://raw.githubusercontent.com/volkovlabs/volkovlabs-app/main/img/app.png)

![Grafana 10](https://img.shields.io/badge/Grafana-10.0.0-orange)
![Grafana 10](https://img.shields.io/badge/Grafana-10.0-orange)
[![YouTube](https://img.shields.io/badge/YouTube-Channel-red)](https://youtube.com/@volkovlabs)
![CI](https://github.com/volkovlabs/volkovlabs-app/workflows/CI/badge.svg)
![E2E](https://github.com/volkovlabs/volkovlabs-app/workflows/E2E/badge.svg)
Expand Down
Loading

0 comments on commit 2aa0a1a

Please sign in to comment.