dev: Add linting rules to vscode settings (#7386)

This commit is contained in:
Brian Choromanski
2026-04-03 01:21:07 -04:00
committed by GitHub
parent bb278aac35
commit 5172571b2e

View File

@@ -17,6 +17,8 @@
"source.fixAll.eslint": "explicit", "source.fixAll.eslint": "explicit",
"source.organizeImports": "never" "source.organizeImports": "never"
}, },
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.formatOnSave": true, "editor.formatOnSave": true,
"eslint.useFlatConfig": true, "eslint.useFlatConfig": true,
"eslint.workingDirectories": [ "eslint.workingDirectories": [
@@ -30,6 +32,7 @@
"**/.svn": true, "**/.svn": true,
"**/CVS": true "**/CVS": true
}, },
"files.insertFinalNewline": true,
"i18n-ally.enabledFrameworks": [ "i18n-ally.enabledFrameworks": [
"vue" "vue"
], ],
@@ -67,6 +70,7 @@
}, },
"[python]": { "[python]": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff" "editor.defaultFormatter": "charliermarsh.ruff",
"editor.tabSize": 4
} }
} }