aboutsummaryrefslogtreecommitdiff
path: root/scalastyle-config.xml
Commit message (Collapse)AuthorAgeFilesLines
* EnsureSingleSpaceAfterTokenChecker doesn't work. Use regexp instead.Dmitry Petrashko2015-04-091-2/+2
|
* Use EnsureSingleSpaceAfterTokenChecker to discover forgotten spaces after `if`Dmitry Petrashko2015-04-091-0/+5
|
* Disabling SimplifyBooleanExpressionChecker: not have a hard to rewrite ↵Dmitry Petrashko2015-04-091-1/+1
| | | | | | counterexample. TreeUnpickler: 494, rewriting to reduce/fold isn't equivalent. !exists(false) isn't easier to read.
* Disabling SpacesAfterPlusChecker: false positives for variances.Dmitry Petrashko2015-04-091-1/+1
|
* We sometimes define object with a lowercase nameDmitry Petrashko2015-04-091-1/+1
|
* Disabling more style checks that do not apply to dotty.Dmitry Petrashko2015-04-091-7/+7
| | | | | We use structural types in return values, sometimes we override equals without overriding hashcode
* ScalaStyle gives spurious errors for braces in ifs.Dmitry Petrashko2015-04-091-3/+3
| | | | | | | | | Commonly used in dotty syntax isn't respected by scalastyle: ``` if (...) bar else if (...) foo else foo ```
* Disable MethodNameChecker.Dmitry Petrashko2015-04-091-1/+1
| | | | In Dotty we frequently want to make method look like it returns a constructor, when it's actually not.
* Allow setters in method name reggae.Dmitry Petrashko2015-04-091-1/+1
|
* Disable style tests that are known not to pass.Dmitry Petrashko2015-04-091-8/+8
| | | | Dotty uses returns, nulls, and has methods with huge cyclomatic compexity
* Add scalastyle to dependencies, with default config.Dmitry Petrashko2015-04-091-0/+117