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