Skip to content

Commit

Permalink
Merge pull request #38 from RunOnFlux/dev
Browse files Browse the repository at this point in the history
v1.4.0
  • Loading branch information
TheTrunk authored Aug 19, 2024
2 parents 2763faa + 273ba1e commit 9822aee
Show file tree
Hide file tree
Showing 25 changed files with 1,157 additions and 713 deletions.
4 changes: 4 additions & 0 deletions @types/theme.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ export type ThemeNavigationTheme = {
colors: ThemeNavigationColors;
};

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const fonts = Fonts(DefaultVariables);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const gutters = Gutters(DefaultVariables);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const images = Images(DefaultVariables);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const layout = Layout(DefaultVariables);

export type CommonParams<C> = ThemeVariables &
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ android {
applicationId "io.runonflux.sspkey"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 23
versionName "1.3.1"
versionCode 24
versionName "1.4.0"
}
signingConfigs {
debug {
Expand Down
17 changes: 16 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ export default [
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
{
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ['.prettierrc.js'],
defaultProject: './tsconfig.json',
},
tsconfigRootDir: import.meta.dirname,
},
globals: {
...globals.browser,
...globals.jest,
Expand All @@ -17,11 +24,19 @@ export default [
},
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
pluginReact.configs.flat.recommended,
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
},
},
];
Loading

0 comments on commit 9822aee

Please sign in to comment.