-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from rmarscher/lucia-check-types-fixes
Lucia check types fixes
- Loading branch information
Showing
14 changed files
with
70 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Code of Conduct | ||
|
||
1. Respect and Inclusion | ||
- Treat all individuals with respect, regardless of their background, identity, or beliefs. | ||
- Foster an inclusive environment where everyone feels welcome and valued. | ||
|
||
2. Professionalism | ||
- Maintain a professional demeanor in all interactions, both online and offline. | ||
- Avoid engaging in personal attacks, harassment, or discrimination. | ||
|
||
3. Collaboration and Teamwork | ||
- Encourage open and constructive communication. | ||
- Collaborate with others in a cooperative and respectful manner. | ||
- Value diverse perspectives and opinions. | ||
|
||
4. Accountability | ||
- Take responsibility for your actions and their impact on others. | ||
- Accept constructive feedback and learn from it. | ||
- Adhere to the company's policies and procedures. | ||
|
||
5. Confidentiality and Privacy | ||
- Respect the confidentiality and privacy of sensitive information. | ||
- Protect personal data and use it only for authorized purposes. | ||
|
||
6. Prohibition of Profanity | ||
- Refrain from using profanity, offensive language, or derogatory remarks. | ||
- Maintain a professional and respectful tone in all communications. | ||
- Use appropriate language to ensure a positive and inclusive environment. | ||
|
||
7. Compliance with Laws and Regulations | ||
- Adhere to all applicable laws, regulations, and industry standards. | ||
- Report any illegal or unethical behavior to the appropriate authorities. | ||
|
||
8. Safety and Security | ||
- Promote a safe and secure environment for all individuals. | ||
- Report any potential security risks or concerns promptly. | ||
|
||
9. Continuous Learning and Improvement | ||
- Stay updated with industry trends and best practices. | ||
- Foster a culture of learning and support professional development. | ||
|
||
10. Enforcement | ||
- Violations of this Code of Conduct may result in disciplinary action, up to and including termination. | ||
|
||
Remember, this Code of Conduct serves as a guideline for expected behavior and sets the standard for a respectful and professional environment. It is essential to review and adhere to this code to create a positive and inclusive community. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import "react-native-url-polyfill/auto"; | ||
import 'react-native-url-polyfill/auto' | ||
// ^^ Remove after upgrade to Expo v50 | ||
// https://github.com/expo/expo/pull/24941 | ||
import "expo-router/entry"; | ||
import { LogBox } from "react-native"; | ||
console.disableYellowBox = true; | ||
LogBox.ignoreAllLogs(); | ||
import 'expo-router/entry' | ||
import { LogBox } from 'react-native' | ||
console.disableYellowBox = true | ||
LogBox.ignoreAllLogs() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import { defineConfig } from 'drizzle-kit/utils' | ||
import type { Config } from 'drizzle-kit' | ||
|
||
export default defineConfig({ | ||
export default { | ||
schema: './src/db/schema.ts', | ||
out: './migrations', | ||
driver: 'd1', | ||
dbCredentials: { | ||
wranglerConfigPath: 'wrangler.toml', | ||
dbName: 'production', | ||
}, | ||
schema: './src/db/schema.ts', | ||
out: './migrations', | ||
verbose: true, | ||
verbose: false, | ||
strict: true, | ||
}) | ||
} satisfies Config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters