mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-20 20:35:43 +02:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
tseslint.configs.recommended,
|
|
{
|
|
files: ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
|
|
rules: {
|
|
semi: "error",
|
|
"prefer-const": "error"
|
|
}
|
|
}
|
|
);
|