123456789101112131415161718192021222324252627282930 |
- {
- "printWidth": 80,
- "tabWidth": 2,
- "useTabs": false,
- "semi": true,
- "singleQuote": true,
- "trailingComma": "es5",
- "bracketSpacing": true,
- "bracketSameLine": false,
- "arrowParens": "always",
- "htmlWhitespaceSensitivity": "ignore",
- "vueIndentScriptAndStyle": false,
- "endOfLine": "auto",
- "singleAttributePerLine": false,
- "overrides": [
- {
- "files": "*.vue",
- "options": {
- "printWidth": 100,
- "tabWidth": 2
- }
- },
- {
- "files": ["*.ts", "*.js", "*.json"],
- "options": {
- "tabWidth": 2
- }
- }
- ]
- }
|