mirror of
https://github.com/smyalygames/flightsim-on-linux.git
synced 2025-05-18 06:04:14 +02:00
30 lines
537 B
JSON
30 lines
537 B
JSON
{
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended",
|
|
"next/core-web-vitals",
|
|
"plugin:mdx/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
},
|
|
"sourceType": "module",
|
|
"project": "tsconfig.json"
|
|
},
|
|
"settings": {
|
|
"mdx/code-blocks": true
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.md","*.mdx"],
|
|
"extends": "plugin:mdx/recommended"
|
|
}
|
|
]
|
|
|
|
}
|