Improve performance when there are many files by pocke · Pull Request #1184 · soutaro/steep

Probably this PR fixes #661. The execution time of steep check increases with O(n^2) order (n == number of files). This PR improves the performance. The order will probably be O(n). Problem TypeChe...