fixes prettier error message during build (#295)

fixes #290
This commit is contained in:
Vim 2021-07-02 12:32:55 -07:00 committed by GitHub
commit e8385e1439
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,10 +39,10 @@ module.exports = {
patterns: [ patterns: [
// The pattern "**/*.{js,jsx,ts,tsx}" is // The pattern "**/*.{js,jsx,ts,tsx}" is
// not used because we will rely on `eslint --fix` // not used because we will rely on `eslint --fix`
'**/*.{css,scss,less}', '**/*.{scss}',
'**/*.{json,json5}', '**/*.{json}',
'**/*.{graphql}', '**/*.{graphql}',
'**/*.{md,mdx}', '**/*.{md}',
'**/*.{html}', '**/*.{html}',
'**/*.{yaml,yml}', '**/*.{yaml,yml}',
], ],