mirror of
https://github.com/pezkuwichain/pezkuwi-dev.git
synced 2026-04-21 23:48:03 +00:00
23 lines
573 B
JavaScript
23 lines
573 B
JavaScript
// Copyright 2017-2025 @pezkuwi/dev authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: true,
|
|
embeddedLanguageFormatting: 'off',
|
|
endOfLine: 'lf',
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: true,
|
|
parser: 'typescript',
|
|
printWidth: 2048,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: true, // only on those files explicitly asked for
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'none',
|
|
useTabs: false
|
|
};
|