Activate "around operators" space properties. Remove other from settings
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
class Some {
|
||||
fun some() {
|
||||
var int : Int=0
|
||||
|
||||
int=12
|
||||
int+=12
|
||||
int-=12
|
||||
int*=12
|
||||
int/=12
|
||||
int%=12
|
||||
|
||||
true&&true
|
||||
true||false
|
||||
|
||||
12===3
|
||||
12!==3
|
||||
12==3
|
||||
12!=3
|
||||
|
||||
12<=3
|
||||
12>=3
|
||||
12<3
|
||||
12>3
|
||||
|
||||
12+3-12
|
||||
|
||||
12%3*12/3
|
||||
|
||||
!true
|
||||
int++
|
||||
++int
|
||||
int--
|
||||
--int
|
||||
+12
|
||||
-12
|
||||
|
||||
1..2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user