0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-23 23:28:41 -05:00
penpot-plugins/apps/create-palette-plugin/eslint.config.js

28 lines
565 B
JavaScript
Raw Normal View History

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'] },
];