Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 54x 54x 54x 54x 54x | const CATEGORY_GLOBAL = 'Global'; const CATEGORY_COMMON = 'Common'; const CATEGORY_SOLIDITY = 'Solidity'; const options = { printWidth: { since: '0.0.0', category: CATEGORY_GLOBAL, type: 'int', default: 80, description: 'The line length where Prettier will try wrap.', range: { start: 0, end: Number.POSITIVE_INFINITY, step: 1 } }, tabWidth: { type: 'int', category: CATEGORY_GLOBAL, default: 2, description: 'Number of spaces per indentation level.', range: { start: 0, end: Number.POSITIVE_INFINITY, step: 1 } }, useTabs: { since: '1.0.0', category: CATEGORY_GLOBAL, type: 'boolean', default: false, description: 'Indent with tabs instead of spaces.' }, bracketSpacing: { since: '0.0.0', category: CATEGORY_COMMON, type: 'boolean', default: true, description: 'Print spaces between brackets.', oppositeDescription: 'Do not print spaces between brackets.' }, singleQuote: { since: '0.0.0', category: CATEGORY_COMMON, type: 'boolean', default: false, description: 'Use single quotes instead of double quotes.' }, compiler: { category: CATEGORY_SOLIDITY, type: 'string', description: 'The Solidity compiler version to help us avoid critical errors in format for the wrong version.' } }; module.exports = options; |