Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ic08e7c4b5b4f4072de9e2f9a701e977b6a6a6964
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
export default {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
plugins: [],
|
|
};
|