12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
|
const options = {
|
||
|
arrowParens: 'avoid',
|
||
|
singleQuote: true,
|
||
|
bracketSpacing: true,
|
||
|
endOfLine: 'lf',
|
||
|
semi: false,
|
||
|
tabWidth: 4,
|
||
|
trailingComma: 'none'
|
||
|
}
|
||
|
|
||
|
module.exports = options
|