mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-21 04:45:41 +02:00
19 lines
No EOL
364 B
JavaScript
19 lines
No EOL
364 B
JavaScript
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config({
|
|
files: ["**/*.{ts,tsx,js,jsx}"],
|
|
languageOptions: {
|
|
parser: tseslint.parser,
|
|
parserOptions: {
|
|
ecmaVersion: "latest",
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
jsx: true
|
|
}
|
|
}
|
|
},
|
|
rules: {
|
|
"semi": "error",
|
|
"prefer-const": "warn"
|
|
}
|
|
}); |