style: stricter linting

This commit is contained in:
Aleksey Kulikov 2022-02-23 11:05:14 +03:00
parent d0f7746a01
commit 2eb50dec69
12 changed files with 47 additions and 27 deletions

View file

@ -18,7 +18,7 @@ String getLibName() {
ext = 'dll';
} else if (Platform.isMacOS) {
ext = 'dylib';
} else if (!(Platform.isLinux)) {
} else if (!Platform.isLinux) {
throw Exception('Unsupported platform.');
}