Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 /// Support for client code that extends the analysis engine by adding new | |
| 6 /// lint rules. | |
| 7 library analyzer.plugin.linter; | |
| 8 | |
| 9 import 'package:analyzer/src/plugin/linter_plugin.dart'; | |
| 10 import 'package:linter/src/linter.dart'; | |
| 11 import 'package:plugin/plugin.dart'; | |
| 12 | |
| 13 /// The identifier of the extension point that allows plugins to register new | |
| 14 /// analysis tasks with the analysis engine. The object used as an extension mus t | |
|
kevmoo
2015/05/08 22:30:00
long line
pquitslund
2015/05/08 22:39:19
Fixed.
| |
| 15 /// implement [LintRule]. | |
| 16 final String LINT_RULE_EXTENSION_POINT_ID = Plugin.join( | |
| 17 LinterPlugin.UNIQUE_IDENTIFIER, LinterPlugin.LINT_RULE_EXTENSION_POINT); | |
| OLD | NEW |