Skip to content

Commit be885bb

Browse files
committed
Fix file case
1 parent 74bd17c commit be885bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = {
3030
"@netlify/eslint-config-node/.prettierrc.json"
3131
```
3232

33-
- Copy the `.editorconfig`,`.gitattributes` and `./scripts/run-on-error.js` files relativity to the root of the project.
33+
- Copy the `.editorconfig`,`.gitattributes` and `./scripts/run_on_error.js` files relativity to the root of the project.
3434
- Add the following properties to the `package.json`. Please replace the `scriptsArgs` globbing expressions to match the
3535
files where the source JavaScript/Markdown/HTML/JSON/YAML files are located. `npm run format` should also be run
3636
during `npm test` and `npm run format:ci` during CI
@@ -41,10 +41,10 @@ module.exports = {
4141
"scripts": {
4242
"format": "run-s format:check-fix:*",
4343
"format:ci": "run-s format:check:*",
44-
"format:check-fix:lint": "./scripts/run-on-error.js format:check:lint format:fix:lint",
44+
"format:check-fix:lint": "./scripts/run_on_error.js format:check:lint format:fix:lint",
4545
"format:check:lint": "cross-env-shell eslint $npm_package_scriptsArgs_eslint",
4646
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_scriptsArgs_eslint",
47-
"format:check-fix:prettier": "./scripts/run-on-error.js format:check:prettier format:fix:prettier",
47+
"format:check-fix:prettier": "./scripts/run_on_error.js format:check:prettier format:fix:prettier",
4848
"format:check:prettier": "cross-env-shell prettier --check $npm_package_scriptsArgs_prettier",
4949
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_scriptsArgs_prettier"
5050
},

0 commit comments

Comments
 (0)