34 lines
609 B
JSON
34 lines
609 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"jsx": true,
|
||
|
"useJSXTextNode": true,
|
||
|
"ecmaVersion": 2018,
|
||
|
"sourceType": "module",
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint",
|
||
|
"roblox-ts",
|
||
|
"prettier"
|
||
|
],
|
||
|
"extends": [
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:roblox-ts/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"prettier/prettier": [
|
||
|
"warn",
|
||
|
{
|
||
|
"semi": true,
|
||
|
"endOfLine": "auto",
|
||
|
"trailingComma": "all",
|
||
|
"singleQuote": false,
|
||
|
"printWidth": 120,
|
||
|
"tabWidth": 4,
|
||
|
"useTabs": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|