Skip to content

Commit 7d1ab23

Browse files
authored
PR checklist (#263)
* Updated outdated packages * Fixed errors * Fixed legend interactivity
1 parent 3bcad01 commit 7d1ab23

File tree

12 files changed

+4385
-9781
lines changed

12 files changed

+4385
-9781
lines changed

.eslintignore

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

.eslintrc.js

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

eslint.config.mjs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import powerbiVisualsConfigs from "eslint-plugin-powerbi-visuals";
2+
import tseslint from 'typescript-eslint';
3+
4+
export default [
5+
...tseslint.configs.recommended,
6+
powerbiVisualsConfigs.configs.recommended,
7+
{
8+
rules: {
9+
"@typescript-eslint/no-explicit-any": "warn",
10+
"@typescript-eslint/no-unused-vars": "warn",
11+
"@typescript-eslint/no-unsafe-function-type": "warn",
12+
"prefer-const": "warn",
13+
"@typescript-eslint/no-unused-expressions": "warn"
14+
}
15+
},
16+
{
17+
ignores: ["node_modules/**", "dist/**", ".vscode/**", ".tmp/**", "coverage/**", "specs/**", "test.webpack.config.js", "karma.conf.ts"],
18+
},
19+
];

0 commit comments

Comments
 (0)