Commit 2020-04-03 08:24 8af4bb8d
View on Github →refactor(tactic/lint): split into multiple files (#2299)
The lint.lean file is getting too long for me to comfortably navigate. This PR splits the file up into several parts:
tactic.lint.basicdefining thelinterstructure and the@[linter]and@[nolint]attributestactic.lint.frontenddefined the functions to run the linters and the various#lintcommands- The linters are split into three separate files, the simp linters, the type class linters, and the rest.
tactic.lintimports all of the files above soimport tactic.lintstill works as before