|
1 | 1 | { |
2 | 2 | "name": "airtable-formula", |
3 | 3 | "private": true, |
4 | | - "version": "2.0.77", |
| 4 | + "version": "2.0.78", |
5 | 5 | "publisher": "Nskha", |
6 | 6 | "displayName": "Airtable Formulas, Scripts, Automation, MCP & LSP", |
7 | 7 | "description": "Airtable formula, script & automation editor with MCP server (63 tools), language server, and AI skills for VS Code.", |
|
80 | 80 | }, |
81 | 81 | { |
82 | 82 | "id": "airtable-script", |
83 | | - "aliases": ["Airtable Script", "script"], |
84 | | - "extensions": [".script", ".ats"], |
| 83 | + "aliases": [ |
| 84 | + "Airtable Script", |
| 85 | + "script" |
| 86 | + ], |
| 87 | + "extensions": [ |
| 88 | + ".script", |
| 89 | + ".ats" |
| 90 | + ], |
85 | 91 | "configuration": "./language-configuration/airtable-script-language-configuration.json", |
86 | 92 | "icon": { |
87 | 93 | "light": "./icons/script-light.svg", |
|
90 | 96 | }, |
91 | 97 | { |
92 | 98 | "id": "airtable-automation", |
93 | | - "aliases": ["Airtable Automation", "automation"], |
94 | | - "extensions": [".automation", ".ata"], |
| 99 | + "aliases": [ |
| 100 | + "Airtable Automation", |
| 101 | + "automation" |
| 102 | + ], |
| 103 | + "extensions": [ |
| 104 | + ".automation", |
| 105 | + ".ata" |
| 106 | + ], |
95 | 107 | "configuration": "./language-configuration/airtable-automation-language-configuration.json", |
96 | 108 | "icon": { |
97 | 109 | "light": "./icons/automation-light.svg", |
|
568 | 580 | "airtableFormula.script.beautifyStyle": { |
569 | 581 | "type": "string", |
570 | 582 | "default": "default", |
571 | | - "enum": ["default", "compact", "singleQuote", "tabIndent", "semicolonFree"], |
| 583 | + "enum": [ |
| 584 | + "default", |
| 585 | + "compact", |
| 586 | + "singleQuote", |
| 587 | + "tabIndent", |
| 588 | + "semicolonFree" |
| 589 | + ], |
572 | 590 | "enumDescriptions": [ |
573 | 591 | "Prettier defaults: 2-space indent, double quotes, trailing commas", |
574 | 592 | "printWidth: 120, no trailing commas", |
|
581 | 599 | "airtableFormula.script.minifyLevel": { |
582 | 600 | "type": "string", |
583 | 601 | "default": "standard", |
584 | | - "enum": ["safe", "standard", "aggressive", "extreme"], |
| 602 | + "enum": [ |
| 603 | + "safe", |
| 604 | + "standard", |
| 605 | + "aggressive", |
| 606 | + "extreme" |
| 607 | + ], |
585 | 608 | "enumDescriptions": [ |
586 | 609 | "Whitespace removal only — no mangle, no compress", |
587 | 610 | "compress: true, mangle: false (good balance)", |
|
618 | 641 | "airtableFormula.script.prettier.trailingComma": { |
619 | 642 | "type": "string", |
620 | 643 | "default": "all", |
621 | | - "enum": ["all", "es5", "none"], |
| 644 | + "enum": [ |
| 645 | + "all", |
| 646 | + "es5", |
| 647 | + "none" |
| 648 | + ], |
622 | 649 | "description": "Prettier trailingComma for Script/Automation beautifier." |
623 | 650 | }, |
624 | 651 | "airtableFormula.script.terser.mangle": { |
|
0 commit comments