Skip to content

Commit 572119a

Browse files
Merge pull request #16 from ModusCreateOrg/ADE-61
[ADE-61] - User Registration and Authentication Management
2 parents d783b4c + 114031b commit 572119a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+10831
-2890
lines changed

frontend/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# testing
99
/coverage
10+
/coverage/ios
1011
/cypress/screenshots
1112

1213
# production

frontend/.stylelintrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"extends": "stylelint-config-standard-scss",
3+
"plugins": ["stylelint-scss"],
4+
"rules": {
5+
"selector-class-pattern": null,
6+
"no-descending-specificity": null,
7+
"scss/dollar-variable-pattern": null,
8+
"scss/at-mixin-pattern": null
9+
},
10+
"ignoreFiles": [
11+
"coverage/**/*",
12+
"dist/**/*",
13+
"android/app/build/**/*",
14+
"android/.gradle/**/*",
15+
"android/build/**/*",
16+
"android/capacitor-cordova-android-plugins/build/**/*",
17+
"android/app/src/main/assets/public/**/*",
18+
"node_modules/**/*"
19+
]
20+
}

frontend/eslint.config.mjs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import pluginReactRefresh from 'eslint-plugin-react-refresh';
1818
*/
1919
export default tseslint.config(
2020
{
21+
// Only target TypeScript files
2122
files: ['**/*.ts', '**/*.tsx'],
2223
extends: [eslint.configs.recommended, ...tseslint.configs.recommended],
2324
languageOptions: {
@@ -44,6 +45,15 @@ export default tseslint.config(
4445
{
4546
// global ignores
4647
// do not add any other keys to this object
47-
ignores: ['coverage/', 'dist/'],
48+
ignores: [
49+
'coverage/',
50+
'dist/',
51+
'android/app/build/**',
52+
'android/.gradle/**',
53+
'android/build/**',
54+
'android/capacitor-cordova-android-plugins/build/**',
55+
'android/app/src/main/assets/public/**',
56+
'**/node_modules/**'
57+
],
4858
},
4959
);

0 commit comments

Comments
 (0)