mirror of
https://github.com/0x5eal/wg-lua.git
synced 2024-12-12 12:50:36 +00:00
22 lines
475 B
Text
22 lines
475 B
Text
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"jsx": true,
|
||
|
"useJSXTextNode": true,
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "module",
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"ignorePatterns": ["/out"],
|
||
|
"plugins": ["@typescript-eslint", "roblox-ts", "prettier"],
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:roblox-ts/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"prettier/prettier": "warn"
|
||
|
}
|
||
|
}
|