mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:13:25 +00:00
26 lines
725 B
JSON
26 lines
725 B
JSON
{
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
],
|
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
|
"eslint.format.enable": true,
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
|
|
],
|
|
"typescript.preferences.autoImportFileExcludePatterns": [
|
|
// Should import Text from UI components instead
|
|
"react-native/Libraries/Text/Text.d.ts"
|
|
]
|
|
}
|