fosrl.pangolin/eslint.config.js

13 lines
277 B
JavaScript
Raw Normal View History

2025-06-09 22:25:27 +02:00
import tseslint from 'typescript-eslint';
export default tseslint.config(
tseslint.configs.recommended,
2025-02-12 21:52:58 -05:00
{
2025-06-09 22:18:38 +02:00
files: ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
2025-02-12 21:52:58 -05:00
rules: {
semi: "error",
"prefer-const": "error"
}
}
2025-06-09 22:25:27 +02:00
);