mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
541 B
28 lines
541 B
const baseConfig = require('../../eslint.config.cjs');
|
|
|
|
module.exports = [
|
|
{
|
|
ignores: ['**/dist']
|
|
},
|
|
...baseConfig,
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
|
|
// Override or add rules here
|
|
rules: {},
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: ['libs/common/tsconfig.*?.json']
|
|
}
|
|
}
|
|
},
|
|
{
|
|
files: ['**/*.ts', '**/*.tsx'],
|
|
// Override or add rules here
|
|
rules: {}
|
|
},
|
|
{
|
|
files: ['**/*.js', '**/*.jsx'],
|
|
// Override or add rules here
|
|
rules: {}
|
|
}
|
|
];
|
|
|