13 lines
178 B
JavaScript
13 lines
178 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
endOfLine: 'lf',
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
bracketSpacing: false,
|
|
|
|
proseWrap: 'always',
|
|
}
|