123456789101112131415161718192021222324 |
- {
- "extends": "@salesforce/dev-config/tslint",
- "rules": {
- "no-any": false,
- "quotemark": {
- "options": "double"
- },
- "ordered-imports": false,
- "trailing-comma": [
- true,
- {
- "multiline": {
- "objects": "always",
- "arrays": "always",
- "functions": "never",
- "typeLiterals": "ignore"
- },
- "singleline": "never",
- "esSpecCompliant": true
- }
- ]
- }
- }
|