💄(app-desk) highlight team selected
Highlight the selected team in the team list.
This commit is contained in:
@@ -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',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
@@ -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'],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user