Skip to content

Commit

Permalink
added line length 80 linter rule
Browse files Browse the repository at this point in the history
  • Loading branch information
MaikuB committed Aug 24, 2024
1 parent 4bfb9a5 commit a3b907f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
include: package:flutter_lints/flutter.yaml
include: package:flutter_lints/flutter.yaml

linter:
rules:
- lines_longer_than_80_chars
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import 'grant_types.dart';
import 'token_request.dart';

/// Details required for a combined authorization and code exchange request
class AuthorizationTokenRequest extends TokenRequest with AuthorizationParameters {
class AuthorizationTokenRequest extends TokenRequest
with AuthorizationParameters {
AuthorizationTokenRequest(
super.clientId,
super.redirectUrl, {
Expand Down

0 comments on commit a3b907f

Please sign in to comment.