mirror of
https://github.com/acamarata/hijri-core.git
synced 2026-06-30 18:54:27 +00:00
16 lines
452 B
JavaScript
16 lines
452 B
JavaScript
import tsParser from '@typescript-eslint/parser';
|
|
import tsPlugin from '@typescript-eslint/eslint-plugin';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
import { typescript } from '@acamarata/eslint-config';
|
|
|
|
export default [
|
|
{
|
|
plugins: { '@typescript-eslint': tsPlugin },
|
|
languageOptions: { parser: tsParser },
|
|
},
|
|
...typescript,
|
|
eslintConfigPrettier,
|
|
{
|
|
ignores: ['dist/', 'node_modules/', '*.cjs', '*.mjs'],
|
|
},
|
|
];
|