unipass-js-sdk
Version:
unipass-js-sdk
15 lines (14 loc) • 582 B
JavaScript
module.exports = {
// A tab represents several spaces Default to two
tabWidth: 2,
// Indent with tab Default to False, indicating space reduction
useTabs: false,
// Does the string use single quotes Default to False, use double quotes
singleQuote: true,
// Whether semicolon is used in row position Default to true
semi: false,
// Use trailing comma There are three optional values "< none | es5 | all >"
trailingComma: 'all',
// Object braces directly check whether there are spaces Default to true effect:{ foo: bar }
bracketSpacing: true,
}