mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-04 12:01:40 +00:00
* test: utilize new flat ESLint configuration * test: add TypeScript support to new flat ESLint config * test: fix `@typescript-eslint/consistent-indexed-object-style` lint issue
12 lines
232 B
JavaScript
12 lines
232 B
JavaScript
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default [
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...tseslint.configs.stylistic,
|
|
{
|
|
ignores: [".*", "dist"],
|
|
},
|
|
];
|