File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -275,6 +275,19 @@ Inspecting 1 file
275
275
276
276
For ` rails-ujs ` CoffeeScript and JavaScript files, you can run ` npm run lint ` in ` actionview ` folder.
277
277
278
+ We are also running [ misspell] ( https://github.com/client9/misspell ) which is mainly written in Golang to check
279
+ spelling with [ GitHub Actions] ( ../../.github/workflows/lint.yml ) . Correct commonly misspelled English words quickly
280
+ with ` misspell ` . You can run ` misspell ` locally against all files with:
281
+
282
+ ``` bash
283
+ find . -type f | xargs ./misspell -i ' aircrafts,devels,invertions' -error
284
+ ```
285
+
286
+ Notable ` misspell ` help options or flags are:
287
+
288
+ - ` -i ` string: ignore the following corrections, comma separated
289
+ - ` -w ` : Overwrite file with corrections (default is just to display)
290
+
278
291
### Benchmark Your Code
279
292
280
293
For changes that might have an impact on performance, please benchmark your
You can’t perform that action at this time.
0 commit comments