Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add TailwindCSS #1252

Merged
merged 3 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .prettierignore

This file was deleted.

6 changes: 0 additions & 6 deletions .prettierrc

This file was deleted.

8 changes: 6 additions & 2 deletions apps/frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"extends": ["@nuxt/eslint-config"],
"ignorePatterns": ["!**/*", ".nuxt/**", ".output/**", "node_modules"],
"extends": ["@nuxt/eslint-config", "plugin:prettier/recommended", "prettier"],
"env": {
"browser": true,
"node": true
},
"ignorePatterns": [".nuxt/**", ".output/**", "node_modules"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx", "*.vue"],
Expand Down
3 changes: 3 additions & 0 deletions apps/frontend/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**/.nuxt
**/dist
**/node_modules
4 changes: 4 additions & 0 deletions apps/frontend/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"endOfLine": "auto",
"plugins": ["prettier-plugin-tailwindcss"]
}
4 changes: 2 additions & 2 deletions apps/frontend/COPYING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ This includes, but may not be limited to, the following files:

- assets/images/404.svg
- assets/images/logo.svg
- components/brand/*
- components/brand/\*
- static/favicon.ico
- static/favicon-light.ico

## External logos

The following files are owned by their respective copyright holders and must be used within each of their Brand Guidelines:

- assets/images/external/*
- assets/images/external/\*
2 changes: 1 addition & 1 deletion apps/frontend/crowdin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project_id: 518556
preserve_hierarchy: true
commit_message: '[ci skip]'
commit_message: "[ci skip]"

files:
- source: /locales/en-US/*
Expand Down
Loading
Loading