about summary refs log tree commit diff
path: root/src/docs/suspicious_assignment_formatting.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/suspicious_assignment_formatting.txt')
-rw-r--r--src/docs/suspicious_assignment_formatting.txt12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/docs/suspicious_assignment_formatting.txt b/src/docs/suspicious_assignment_formatting.txt
deleted file mode 100644
index b889827cdf2..00000000000
--- a/src/docs/suspicious_assignment_formatting.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-### What it does
-Checks for use of the non-existent `=*`, `=!` and `=-`
-operators.
-
-### Why is this bad?
-This is either a typo of `*=`, `!=` or `-=` or
-confusing.
-
-### Example
-```
-a =- 42; // confusing, should it be `a -= 42` or `a = -42`?
-```
\ No newline at end of file