File tree Expand file tree Collapse file tree 6 files changed +248
-326
lines changed Expand file tree Collapse file tree 6 files changed +248
-326
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,6 @@ analyzer:
11
11
omit_local_variable_types : ignore
12
12
# There are currently 3360 violations in lib/.
13
13
prefer_single_quotes : ignore
14
- # Ignoring "style" lint rules from pedantic for now. There are pre-existing
15
- # violations that need to be cleaned up. Each one can be cleaned up and
16
- # enabled according to the value provided.
17
- # TODO(srawlins): At the time of writing, 500 violations in lib/. The fix
18
- # is mechanical, via `dartfmt --fix-doc-comments`.
19
- slash_for_doc_comments : ignore
20
14
# There are currently 2000 violations in lib/.
21
15
unnecessary_this : ignore
22
16
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ import 'package:analyzer/error/error.dart';
6
6
import 'package:analyzer/src/error/analyzer_error_code.dart' ;
7
7
import 'package:meta/meta.dart' ;
8
8
9
+ // It is hard to visually separate each code's _doc comment_ from its published
10
+ // _documentation comment_ when each is written as an end-of-line comment.
11
+ // ignore_for_file: slash_for_doc_comments
12
+
9
13
/// The diagnostic codes associated with `dart:ffi` .
10
14
class FfiCode extends AnalyzerErrorCode {
11
15
/**
Original file line number Diff line number Diff line change 5
5
import 'package:analyzer/error/error.dart' ;
6
6
import 'package:analyzer/src/error/analyzer_error_code.dart' ;
7
7
8
+ // It is hard to visually separate each code's _doc comment_ from its published
9
+ // _documentation comment_ when each is written as an end-of-line comment.
10
+ // ignore_for_file: slash_for_doc_comments
11
+
8
12
/**
9
13
* The hints and coding recommendations for best practices which are not
10
14
* mentioned in the Dart Language Specification.
Original file line number Diff line number Diff line change 2
2
// for details. All rights reserved. Use of this source code is governed by a
3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
+ // It is hard to visually separate each code's _doc comment_ from its published
6
+ // _documentation comment_ when each is written as an end-of-line comment.
7
+ // ignore_for_file: slash_for_doc_comments
8
+
5
9
/**
6
10
* The errors produced during syntactic analysis (scanning and parsing).
7
11
*/
Original file line number Diff line number Diff line change 4
4
5
5
import 'package:analyzer/error/error.dart' ;
6
6
7
+ // It is hard to visually separate each code's _doc comment_ from its published
8
+ // _documentation comment_ when each is written as an end-of-line comment.
9
+ // ignore_for_file: slash_for_doc_comments
10
+
7
11
/**
8
12
* The error code indicating a marker in code for work that needs to be finished
9
13
* or revisited.
You can’t perform that action at this time.
0 commit comments