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

Strapi v5 #41

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

73 changes: 38 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

############################
# OS X
############################
Expand Down Expand Up @@ -69,72 +71,73 @@ $RECYCLE.BIN/
*.log
*.sql
*.sqlite
*.sqlite3


############################
# Misc.
############################

*#
ssl
.idea
nbproject
.vscode/
.tsbuildinfo
.eslintcache
.env


############################
# Node.js
# Strapi
############################

lib-cov
lcov.info
pids
logs
results
build
node_modules
.node_history
package-lock.json
**/package-lock.json
!docs/package-lock.json
*.heapsnapshot
public/uploads/*
!public/uploads/.gitkeep


############################
# Tests
# Build
############################

testApp
coverage
cypress/screenshots
cypress/videos
dist
build
.vitepress


############################
# Documentation
# Node.js
############################

dist

############################
# Builds
############################
lib-cov
lcov.info
pids
logs
results
node_modules
.node_history

packages/generators/app/files/public/
schema.graphql

############################
# Example app
# Package managers
############################

.dev
# *.cache
.yarn/*
!.yarn/cache
!.yarn/unplugged
!.yarn/patches
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.pnp.*
yarn-error.log


############################
# Visual Studio Code
# Tests
############################

front-workspace.code-workspace
.yarn
.yarnrc
coverage

cache
## watch:link
.yalc
yalc.lock
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 80,
"endOfLine": "lf",
"semi": true,
"tabWidth": 2,
"trailingComma": "es5",
"plugins": ["@ianvs/prettier-plugin-sort-imports"]
}
File renamed without changes.
12 changes: 12 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// @ts-check

import eslint from "@eslint/js";
import tseslint from "typescript-eslint";

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
ignores: ["dist", "playground"],
}
);
Loading