Skip to content

Commit b28e385

Browse files
authored
Chore: Improve ESlint config and fix NX config (#1478)
1 parent fe33388 commit b28e385

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

.eslintignore

-2
This file was deleted.

eslint.config.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
11
// @ts-check
22
const grafanaConfig = require('@grafana/eslint-config/flat');
33

4+
// If you edit this config consider running `npx -y @eslint/config-inspector@latest` first.
5+
46
/**
57
* @type {Array<import('eslint').Linter.Config>}
68
*/
79
module.exports = [
810
{
9-
files: ['**/*.{ts,tsx,js}'],
11+
name: 'plugin-tools/ignores',
1012
ignores: [
1113
'.github',
12-
'.yarn',
14+
'.nx/**',
1315
'**/.*', // dotfiles aren't ignored by default in FlatConfig,
16+
'packages/**/dist/**',
17+
'packages/create-plugin/templates/**',
1418
],
1519
},
20+
{
21+
name: 'plugin-tools/defaults',
22+
files: ['**/*.{ts,tsx,js}'],
23+
},
1624
grafanaConfig,
1725
{
26+
name: 'plugin-e2e/overrides',
1827
rules: {
1928
'react/prop-types': 'off',
2029
'react-hooks/rules-of-hooks': 'off',

nx.json

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,21 @@
77
"cache": true
88
},
99
"typecheck": {
10-
"inputs": ["default", "{workspaceRoot}/tsconfig.base.json"],
10+
"inputs": ["default", "{projectRoot}/tsconfig.json", "{workspaceRoot}/tsconfig.base.json"],
1111
"cache": true
1212
},
1313
"lint": {
14-
"inputs": ["default", "{workspaceRoot}/.eslintrc"],
14+
"inputs": ["default", "{workspaceRoot}/eslint.config.js"],
1515
"cache": true
1616
},
1717
"test": {
18-
"inputs": ["default", "{projectRoot}/jest.config.js", "{workspaceRoot}/jest.config.base.js"],
18+
"inputs": ["default", "{projectRoot}/vitest.config.ts", "{workspaceRoot}/vitest.config.base.ts"],
1919
"cache": true
2020
}
2121
},
2222
"namedInputs": {
2323
"sharedGlobals": ["{workspaceRoot}/.github/workflows/ci.yml"]
2424
},
25-
"affected": {
26-
"defaultBase": "main"
27-
},
25+
"defaultBase": "main",
2826
"nxCloudAccessToken": "ZDU3OTNkMTItNWIwZi00N2U4LTk2MjYtNzJkYzA0YzgwNWNlfHJlYWQ="
2927
}

0 commit comments

Comments
 (0)