💄(app-desk) highlight team selected

Highlight the selected team in the team list.
This commit is contained in:
Anthony LC
2024-02-20 15:52:06 +01:00
committed by Anthony LC
parent 45d05873e2
commit 5113eb013b
6 changed files with 110 additions and 35 deletions

View File

@@ -43,6 +43,7 @@ module.exports = {
'jest/expect-expect': 'error',
'@typescript-eslint/unbound-method': 'off',
'jest/unbound-method': 'error',
'react/react-in-jsx-scope': 'off',
},
},
],

View File

@@ -2,7 +2,6 @@ const common = require('./common');
module.exports = {
extends: [
'people/jest',
'next',
'plugin:prettier/recommended',
'plugin:@tanstack/eslint-plugin-query/recommended',
@@ -30,6 +29,12 @@ module.exports = {
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'error',
},
overrides: common.eslintTS,
overrides: [
...common.eslintTS,
{
files: ['*.spec.*', '*.test.*', '**/__mock__/**/*'],
extends: ['people/jest'],
},
],
ignorePatterns: ['node_modules'],
};