mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-09 08:22:09 -05:00
26 lines
544 B
JavaScript
26 lines
544 B
JavaScript
|
import baseConfig from '../../eslint.config.js';
|
||
|
import typescriptEslintParser from '@typescript-eslint/parser';
|
||
|
|
||
|
export default [
|
||
|
...baseConfig,
|
||
|
{
|
||
|
languageOptions: {
|
||
|
parser: typescriptEslintParser,
|
||
|
parserOptions: { project: './apps/contrast-plugin/tsconfig.app.json' },
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
|
||
|
rules: {},
|
||
|
},
|
||
|
{
|
||
|
files: ['**/*.ts', '**/*.tsx'],
|
||
|
rules: {},
|
||
|
},
|
||
|
{
|
||
|
files: ['**/*.js', '**/*.jsx'],
|
||
|
rules: {},
|
||
|
},
|
||
|
{ ignores: ['vite.config.ts'] },
|
||
|
];
|