gotelem/web/eslint.config.js

10 lines
209 B
JavaScript
Raw Permalink Normal View History

2024-03-08 23:09:08 +00:00
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
2024-03-09 03:53:26 +00:00
{
"ignores": ["dist/*"]
}
2024-03-08 23:09:08 +00:00
);