* Update build.yml to allow pushes to any branch Remove branch restriction for push events, which prevents forked projects from running CI checks prior to creating a PR. * eslint, prettier config only
14 lines
278 B
JavaScript
14 lines
278 B
JavaScript
export default {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
endOfLine: 'auto',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: true,
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
printWidth: 80,
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'all',
|
|
}
|