(it was loading the setup files, then following the imports into "built" directory. as those are compiled JS, it produced lots of type errors.)
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import globals from 'globals';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
import sharedConfig from '../../shared/eslint.config.js';
|
|
|
|
export default [
|
|
...sharedConfig,
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx'],
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
...globals.jest,
|
|
},
|
|
parserOptions: {
|
|
parser: tsParser,
|
|
project: ['./tsconfig.json'],
|
|
sourceType: 'module',
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
rules: {
|
|
'no-restricted-syntax': [
|
|
'error',
|
|
{
|
|
"selector": "CallExpression[callee.property.name='delete'][arguments.length=1] > ObjectExpression[properties.length=0]",
|
|
"message": "repository.deleteAll() will produce a runtime error. Use repository.deleteAll() instead."
|
|
},
|
|
{
|
|
"selector": "CallExpression[callee.property.name='update'][arguments.length>=1] > ObjectExpression[properties.length=0]",
|
|
"message": "repository.update({}, {...}) will produce a runtime error. Use repository.updateAll({...}) instead."
|
|
},
|
|
],
|
|
}
|
|
},
|
|
{
|
|
ignores: [
|
|
"**/built/",
|
|
'*.*',
|
|
"**/jest.setup.*"
|
|
],
|
|
},
|
|
];
|