Skip to content

Commit 3490678

Browse files
committed
chore: repository improvements
1 parent aa4d59b commit 3490678

33 files changed

Lines changed: 34060 additions & 8756 deletions

.eslintrc.cjs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
module.exports = {
22
env: { browser: true, es2020: true },
3+
ignorePatterns: [
4+
"node_modules",
5+
"dist",
6+
"src/remix-app-for-testing",
7+
".eslintrc.cjs",
8+
"tailwind.config.js",
9+
],
310
extends: [
411
"eslint:recommended",
512
"plugin:@typescript-eslint/recommended",
613
"plugin:react-hooks/recommended",
714
],
815
parser: "@typescript-eslint/parser",
916
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
10-
plugins: ["react-refresh"],
17+
plugins: ["@typescript-eslint"],
1118
rules: {
12-
"react-refresh/only-export-components": "warn",
1319
"@typescript-eslint/no-non-null-assertion": "off",
1420
"@typescript-eslint/ban-ts-comment": "off",
21+
"@typescript-eslint/no-explicit-any": "off",
1522
},
1623
};

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/remix-app-for-testing

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"plugins": ["prettier-plugin-tailwindcss"],
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"singleQuote": false,
6+
"trailingComma": "es5",
7+
"semi": true
8+
}

CODE_OF_CONDUCT.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community include:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2424
and learning from the experience
25-
* Focusing on what is best not just for us as individuals, but for the
25+
- Focusing on what is best not just for us as individuals, but for the
2626
overall community
2727

2828
Examples of unacceptable behavior include:
2929

30-
* The use of sexualized language or imagery, and sexual attention or
30+
- The use of sexualized language or imagery, and sexual attention or
3131
advances of any kind
32-
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
34-
* Publishing others' private information, such as a physical or email
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
3535
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3737
professional setting
3838

3939
## Enforcement Responsibilities
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106106
### 4. Permanent Ban
107107

108108
**Community Impact**: Demonstrating a pattern of violation of community
109-
standards, including sustained inappropriate behavior, harassment of an
109+
standards, including sustained inappropriate behavior, harassment of an
110110
individual, or aggression toward or disparagement of classes of individuals.
111111

112112
**Consequence**: A permanent ban from any sort of public interaction within
@@ -125,4 +125,4 @@ enforcement ladder](https://github.com/mozilla/diversity).
125125

126126
For answers to common questions about this code of conduct, see the FAQ at
127127
https://www.contributor-covenant.org/faq. Translations are available at
128-
https://www.contributor-covenant.org/translations.
128+
https://www.contributor-covenant.org/translations.

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ To install and utilize Remix Development Tools, follow these steps:
3333

3434
```bash
3535
npm install remix-development-tools
36-
```
37-
36+
```
37+
3838
2. Add the following to your application `root.tsx` file:
3939

4040
```diff
@@ -72,6 +72,7 @@ export default function App() {
7272
## RemixDevTools props
7373

7474
The `RemixDevTools` component accepts the following props:
75+
7576
- `port`: The port number to use for the Remix Development Tools connection to Remix Forge. If you want to change the port and connect to your Remix Forge VS code extension you need to change the port in VS Code too. Defaults to `3003`.
7677
- `defaultOpen`: Whether to open the Remix Development Tools by default. Defaults to `false`.
7778

@@ -83,9 +84,9 @@ Contributions to Remix Development Tools are welcome! To contribute, please foll
8384
2. Create a new branch for your feature or bug fix.
8485
3. Run `npm run setup` to get your development environment set up.
8586
4. Run `npm run dev` to start the development server.
86-
3. Implement your changes, adhering to the existing code style and best practices.
87-
5. Commit and push your changes to your forked repository.
88-
6. Open a pull request, providing a clear description of your changes and their purpose.
87+
5. Implement your changes, adhering to the existing code style and best practices.
88+
6. Commit and push your changes to your forked repository.
89+
7. Open a pull request, providing a clear description of your changes and their purpose.
8990

9091
## Support
9192

@@ -101,4 +102,4 @@ Remix Development Tools was inspired by the Remix framework and aims to enhance
101102

102103
---
103104

104-
Feel free to explore Remix Development Tools, and we hope it significantly improves your Remix development process. If you encounter any issues or have suggestions for enhancements, please don't hesitate to open an issue on our GitHub repository. Happy Remixing!
105+
Feel free to explore Remix Development Tools, and we hope it significantly improves your Remix development process. If you encounter any issues or have suggestions for enhancements, please don't hesitate to open an issue on our GitHub repository. Happy Remixing!

moveStylesheet.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)