Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fb6f357
feat(cms/index.ts): Add seeding of user on bootstrap
hanEck May 10, 2024
46bc984
feat(cms): Add seed file with iterative user creation
hanEck May 10, 2024
faed47e
fix(cms): Fix linting issues
hanEck May 10, 2024
d81a41d
fix(cms): Fixing more linting issues
hanEck May 10, 2024
4d38e53
fix(cms): New linting errors fixing
hanEck May 10, 2024
f311d58
fix(cms) Linting fix
hanEck May 10, 2024
f2e270d
fix(cms): Linting issues
hanEck May 10, 2024
bbc6bcc
fix(cms): Fix linting issues, define strapi type
hanEck May 10, 2024
6eeb346
fix(cms): Remove linting from seed file due unresolvable linting issue
hanEck May 10, 2024
14526a1
fix(cms): Linting issue regarding strapi type
hanEck May 10, 2024
c1d94fb
fix(cms): Remove linting
hanEck May 10, 2024
710e8c3
Fix(cms): Remove lint-ignore
hanEck May 10, 2024
30565f7
fix(cms): Move seed creation into index.ts
hanEck May 10, 2024
e54cf80
fix(cms): Fix new linting issues
hanEck May 10, 2024
d948913
fix(cms): Add developemt environment condition + Move logic users see…
hanEck May 10, 2024
3a9a910
fix(cms): Fix linting issue
hanEck May 10, 2024
2b38e48
fix(cms): Fix strapi import
hanEck May 10, 2024
891f9c2
Fix(cms): Rollback
hanEck May 10, 2024
b76a8b2
Fix(cms): Update linting file to include babel/ts
hanEck May 10, 2024
936d115
Fix(cms): Rollback babel/ts
hanEck May 10, 2024
0664f87
fix(cms) Resolve parsing error
hanEck May 12, 2024
08b69b8
fix(cms): Add linting for ts files instead of babel
hanEck May 12, 2024
5341eb8
fix(cms): Adjust code to new linting rules
hanEck May 12, 2024
b136376
fix(cms): Adjusting tabs in the linting
hanEck May 12, 2024
3e170e3
fix(cms): Fix the tabs in users.ts
hanEck May 12, 2024
a660a85
fix(cms) Add .eslintignore file to ignore the webpack.js
hanEck May 12, 2024
6a9ddfc
fix(cms): Adjust ignore path
hanEck May 12, 2024
f678045
fix(cms): Remove comments
hanEck May 12, 2024
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
1 change: 1 addition & 0 deletions cms/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/admin/
50 changes: 22 additions & 28 deletions cms/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,24 @@
{
"parser": "@babel/eslint-parser",
"plugins": ["prettier", "unused-imports"],
"ignorePatterns": ["node_modules/", "build/", "dist/", "public/"],
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
},
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": false
},
"sourceType": "module"
},
"extends": ["eslint:recommended", "prettier"],
"env": {
"commonjs": true,
"es6": true,
"node": true,
"browser": false
},
"globals": {
"strapi": true
},
"rules": {
"prettier/prettier": "error",
"no-console": 0
}
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "unused-imports"],
"ignorePatterns": ["node_modules/", "build/", "dist/", "public/"],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"env": {
"commonjs": true,
"es6": true,
"node": true,
"browser": false
},
"globals": {
"strapi": true
},
"rules": {
"prettier/prettier": "error",
"no-console": 0
}
}
Loading