You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -105,10 +99,46 @@ This is an example of how to list things you need to use the software and how to
105
99
npm run dev
106
100
```
107
101
108
-
<p align="right">(<a href="#readme-top">back to top</a>)</p>
102
+
### ESLint and Prettier
103
+
104
+
For ensuring code consistency and adhering to coding standards, our project utilizes ESLint and Prettier. To view linting warnings and errors in the console, it's recommended to run the following script during development:
109
105
106
+
```sh
107
+
npm run lint
108
+
```
109
+
110
+
To automatically fix linting and formatting issues across all files, you can use the following scripts (Note: While these scripts resolve many ESLint warnings or errors, some issues may require manual intervention):
111
+
112
+
```sh
113
+
npm run lint:fix && npm run lint:format
114
+
```
115
+
116
+
### Integrated Development Environments (IDEs) Support
117
+
118
+
For seamless integration with popular IDEs such as Visual Studio Code and IntelliJ, consider installing the following plugins:
119
+
120
+
#### Visual Studio Code
121
+
122
+
1.**ESLint**: Install the ESLint extension to enable real-time linting and error highlighting.
By incorporating these plugins into your development environment, you can take full advantage of ESLint and Prettier to maintain code quality and consistent formatting throughout your project.
137
+
138
+
<palign="right">(<ahref="#readme-top">back to top</a>)</p>
110
139
111
140
<!-- CONTRIBUTING -->
141
+
112
142
## Contributing
113
143
114
144
Any contributions you make are **greatly appreciated**.
@@ -124,21 +154,17 @@ Don't forget to give the project a star! Thanks again!
124
154
125
155
<palign="right">(<ahref="#readme-top">back to top</a>)</p>
126
156
127
-
128
-
129
157
<!-- LICENSE -->
158
+
130
159
## License
131
160
132
161
Distributed under the MIT License. See `LICENSE.txt` for more information.
133
162
134
-
135
-
136
163
<palign="right">(<ahref="#readme-top">back to top</a>)</p>
0 commit comments