mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-23 10:02:51 +00:00
refactor: remove deprecated "jetifier" refactor: base migration to Angular v18 fix: angular warning refactor: update capacitor to v6 refactor: update ngx-markdown to v18 refactor: update to ionic v8 refactor: remove deprecated @ionic-native/core (replaced by @awesome-cordova-plugins/core) fix: build fix: test feat: temporarily use external node image in ci feat: update to node 22 refactor: rebase fix: prettier depencencies ci: update android commandline tools fix: prettier package type ci: let pnpm handle build dependencies refactor: revert to pnpm 8, angular 17
16 lines
292 B
JavaScript
16 lines
292 B
JavaScript
/** @type {import('prettier').Config} */
|
|
const config = {
|
|
tabWidth: 2,
|
|
printWidth: 110,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: 'consistent',
|
|
trailingComma: 'all',
|
|
bracketSpacing: false,
|
|
arrowParens: 'avoid',
|
|
endOfLine: 'lf'
|
|
}
|
|
|
|
module.exports = config;
|