Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/pylintrc

Issue 2010173003: Enable pylint warnings on presubmit checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove print statement in test Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/python.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 # List of plugins (as comma separated values of python modules names) to load, 50 # List of plugins (as comma separated values of python modules names) to load,
51 # usually to register additional checkers. 51 # usually to register additional checkers.
52 load-plugins= 52 load-plugins=
53 53
54 54
55 [MESSAGES CONTROL] 55 [MESSAGES CONTROL]
56 56
57 # Enable the message, report, category or checker with the given id(s). You can 57 # Enable the message, report, category or checker with the given id(s). You can
58 # either give multiple identifier separated by comma (,) or put this option 58 # either give multiple identifier separated by comma (,) or put this option
59 # multiple time. 59 # multiple time.
60 #enable= 60 enable=
61 print-statement,
61 62
62 # Disable the message, report, category or checker with the given id(s). You 63 # Disable the message, report, category or checker with the given id(s). You
63 # can either give multiple identifier separated by comma (,) or put this option 64 # can either give multiple identifier separated by comma (,) or put this option
64 # multiple time (only on the command line, not in the configuration file where 65 # multiple time (only on the command line, not in the configuration file where
65 # it should appear only once). 66 # it should appear only once).
66 # CHANGED: 67 # CHANGED:
67 disable= 68 disable=
68 invalid-name, 69 invalid-name,
69 missing-docstring, 70 missing-docstring,
70 line-too-long, 71 line-too-long,
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 # Create a graph of internal dependencies in the given file (report RP0402 must 302 # Create a graph of internal dependencies in the given file (report RP0402 must
302 # not be disabled) 303 # not be disabled)
303 int-import-graph= 304 int-import-graph=
304 305
305 306
306 [EXCEPTIONS] 307 [EXCEPTIONS]
307 308
308 # Exceptions that will emit a warning when being caught. Defaults to 309 # Exceptions that will emit a warning when being caught. Defaults to
309 # "Exception" 310 # "Exception"
310 overgeneral-exceptions=Exception 311 overgeneral-exceptions=Exception
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/python.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698