mirror of
https://github.com/dcarrillo/atalaya.git
synced 2026-04-18 10:34:06 +00:00
13 lines
259 B
JavaScript
13 lines
259 B
JavaScript
import eslintPluginAstro from 'eslint-plugin-astro';
|
|
import tsParser from '@typescript-eslint/parser';
|
|
|
|
export default [
|
|
...eslintPluginAstro.configs.recommended,
|
|
{
|
|
files: ['src/**/*.ts'],
|
|
languageOptions: {
|
|
parser: tsParser,
|
|
},
|
|
},
|
|
];
|