Commit Graph

16 Commits (cfa09d448386a9fdaad72b7ab1588025a658d300)

Author SHA1 Message Date
Umar Bolatov 8ccb28e39d
Remove travis script causing fals positives 4 years ago
Umar Bolatov 6eeb750adf
Remove travis script with false positives 4 years ago
Umar Bolatov ff5ae783d4
Fix travis config
address #121
4 years ago
practicalswift aba2f7f429 travis: Add linter checking for proper end-of-line punctuation 5 years ago
Andreas M. Antonopoulos 7bfb8a0bd8 I broke the travis! 5 years ago
Andreas M. Antonopoulos 1f41205d24 Show line numbers on Travis errors
grep -n (line numbers)
grep --color (colorize output)
5 years ago
Andreas M. Antonopoulos 59258fd3b7
Merge branch 'develop' into go-misspell 5 years ago
practicalswift d6077124ae linter: Add spell checker "misspell" (Go) 5 years ago
practicalswift a74436ccad travis: Add linter to detect incorrect capitalization or when the end of a sentence is not on the same line as the beginning of the sentence 5 years ago
practicalswift 4b418666e6 travis: Add linter to make sure all lines end with a newline character (#68)
* travis: Add linter to make sure all lines end with a newline character

Ending newlines make line based Unix tools such as `tail`, etc work as expected.

Without ending newline:

```
prompt$ tail -1 ch02.asciidoc
* blockchain to save all transactions vs blockchain as a court system prompt$
```

With ending newline:

```
prompt$ tail -1 ch02.asciidoc
* blockchain to save all transactions vs blockchain as a court system
prompt$
```

Also, makes `git` not complain about "No newline at end of file" in diffs.

* Add newline at end of file

* Remove trailing whitespace
5 years ago
practicalswift b903077184 travis: Add linter to detect multiple blank lines between paragraphs (#66)
* travis: Add linter to detect multiple blank lines between paragraphs

* Use one blank line between paragraphs

* Remove trailing spaces
5 years ago
practicalswift e6c63788d3 travis: Add linter for lexical illusions (duplicate words) (#64) 5 years ago
practicalswift 853c2187d0 travis: Use "exit 1" in case of linter failure (#62)
* travis: Use "exit 1" in case of linter failure

* Fix double spacing
5 years ago
practicalswift 8b8badc050 travis: Add linter to detect "Satoshi style" double spacing (#61)
* Remove double spaces

* travis: Add linter to detect double spacing
5 years ago
practicalswift c0d3b46e9f travis: Add linter to make sure Unix style line endings are used. Add trailing whitespace linter. Fix typos. (#60)
* travis: Add linter to make sure Unix style line endings are used

* Fix typos

* travis: Add linter to detect trailing spaces at end of line

* Remove trailing whitespace

* Use consistent indentation

* travis: Add linter guarding against use of tabs
5 years ago
practicalswift d8a8343408 travis: Add automatic spell checking of new pull requests using codespell (#29) 5 years ago