mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 21:50:43 +03:00
17511be0cf
* ESLint rule: only take explicit boolean predicates in if statements Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Merge main Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Fix frontend linter errors Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Fix jest Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Refactor according to review Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Refactor according to review Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> * Fix lint on new code Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br> --------- Co-authored-by: gitstart-twenty <gitstart-twenty@users.noreply.github.com> Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Toledodev <rafael.toledo@engenharia.ufjf.br>
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { TSESLint } from '@typescript-eslint/utils';
|
|
|
|
import { rule, RULE_NAME } from './use-getLoadable-and-getValue-to-get-atoms';
|
|
|
|
const ruleTester = new TSESLint.RuleTester({
|
|
parser: require.resolve('@typescript-eslint/parser'),
|
|
parserOptions: {
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
},
|
|
});
|
|
|
|
ruleTester.run(RULE_NAME, rule, {
|
|
valid: [
|
|
{
|
|
code: 'const atoms = snapshot.getLoadable(someState).getValue();',
|
|
},
|
|
{
|
|
code: 'const atoms = snapshot.getLoadable(someState(viewId)).getValue();',
|
|
},
|
|
],
|
|
invalid: [
|
|
{
|
|
code: 'const atoms = await snapshot.getPromise(someState);',
|
|
errors: [
|
|
{
|
|
messageId: 'invalidAccessorOnSnapshot',
|
|
},
|
|
],
|
|
output: 'const atoms = await snapshot.getLoadable(someState);',
|
|
},
|
|
{
|
|
code: 'const atoms = await snapshot.getPromise(someState(viewId));',
|
|
errors: [
|
|
{
|
|
messageId: 'invalidAccessorOnSnapshot',
|
|
},
|
|
],
|
|
output: 'const atoms = await snapshot.getLoadable(someState(viewId));',
|
|
},
|
|
{
|
|
code: 'const atoms = snapshot.getLoadable(someState).anotherMethod();',
|
|
errors: [
|
|
{
|
|
messageId: 'invalidWayToGetAtoms',
|
|
},
|
|
],
|
|
output: 'const atoms = snapshot.getLoadable(someState).getValue();',
|
|
},
|
|
],
|
|
});
|