Commit a483018 1 parent d5bc894 commit a483018 Copy full SHA for a483018
File tree 1 file changed +10
-10
lines changed
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -85,12 +85,12 @@ Then add a script in `package.json` similar to this:
85
85
Using [ commitlint] ( https://commitlint.js.org ) helps ensure we have well formed,
86
86
thought out, semantic commit messages.
87
87
88
- Create a file called ` commitlint.config.js ` in your project similar to this:
88
+ Create a file called ` .commitlintrc.json ` in your project similar to this:
89
89
90
- ``` js
91
- module . exports = {
92
- extends: [ ' @uicpharm/standardization/commitlint.config.js' ],
93
- };
90
+ ``` json
91
+ {
92
+ " extends" : [ " @uicpharm/standardization/commitlint.config.js" ]
93
+ }
94
94
```
95
95
96
96
Then add a script in ` package.json ` , providing the first commit hash to begin linting
@@ -161,12 +161,12 @@ Then add a script in `package.json` in your project similar to this:
161
161
Using [ eslint] ( https://eslint.org ) is critical to catch programming errors and maintain
162
162
better coding conventions in JavaScript and TypeScript.
163
163
164
- Create a file called ` .eslintrc.js ` in your project similar to this:
164
+ Create a file called ` .eslintrc.json ` in your project similar to this:
165
165
166
- ``` js
167
- module . exports = {
168
- extends: ' ./node_modules/@uicpharm/standardization/.eslintrc.js' ,
169
- };
166
+ ``` json
167
+ {
168
+ " extends" : " ./node_modules/@uicpharm/standardization/.eslintrc.js" ,
169
+ }
170
170
```
171
171
172
172
Then add a script in ` package.json ` in your project similar to this:
You can’t perform that action at this time.
0 commit comments