Enable clippy lints by default in RLS

This commit is contained in:
Nickolay Ponomarev 2019-04-21 04:39:25 +03:00
parent 50a2310173
commit 098d1c4a17
6 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,5 @@
#![warn(clippy::all)]
use simple_logger;
///! A small command-line app to run the parser.

View file

@ -1,3 +1,5 @@
#![warn(clippy::all)]
use sqlparser::dialect::GenericSqlDialect;
use sqlparser::sqlparser::*;