Files
archived-tauri-vscode/.eslintrc.json
Amr Bashir f85fc5c174 feat: provide schema for config based on tauri-build version (#162)
* feat: provide schema for config based on cli version

* fallback to latest release

* enable commented code

* get schema based on tauri-build version

* change url

* handle schema get request error

* Update versioned-schema.md

* Update extension.ts
2022-09-19 15:08:43 +02:00

17 lines
322 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
}
}