Commit graph

1104 commits

Author SHA1 Message Date
Ian Cordasco
53455fdff7 Merge branch 'bug/178' into 'master'
Match noqa for users with explanations

*Description of changes*

*Related to:*  #178

See merge request !99
2016-07-28 12:28:38 +00:00
Ian Cordasco
c0ddc54f2f
Match noqa for users with explanations
This makes the regular expression a bit more complex, and potentially
slower, but it will fix the issue where users had noqa comments with
colons followed by explanations.

Closes #178
2016-07-28 06:48:15 -05:00
Ian Cordasco
47e3e65cc1
Handle AttributeErrors during parameter aggregation
Plugins do not have their parameters checked in advance, so when we
try to aggregate parameters for a plugin, there's a chance it may
request an attribute of the FileProcessor that simply does not exist.

We catch this and re-raise it but we should also capture it in the
checker manager and handle it appropriately there as well.
2016-07-27 07:17:29 -05:00
Ian Cordasco
846bfafe6c Merge branch 'fix-mp-win-3.0' into 'master'
Fix multiprocessing on Windows

*Related to:*  #184 

I'm still running into #179 with this fix but all processes start now at least.

BTW the current design is pretty bad regarding memory footprint and bootstrap time as you have to pickle the manager object for *every* subprocess. So this does not only fix multiprocessing on Windows. It improves the multiprocessing design on other platforms, too.

See merge request !97
2016-07-27 11:43:51 +00:00
Ian Cordasco
beee924f16 Merge branch 'read_lines_crlf' into 'master'
Fix read_lines_splits_lines test for CRLF endings

This change makes the test pass for when files are saved with CRLF Windows-style line endings since those are included in various `.readlines()` methods by default.

See merge request !96
2016-07-27 11:27:12 +00:00
Ian Cordasco
d258becbe4 Merge branch '_job_count_rettype' into 'master'
_job_count always returns an int

Trivial change, but `_job_count` always returns an `int`.

See merge request !95
2016-07-27 11:26:11 +00:00
schlamar
1f10ed687e Fix multiprocessing on Windows 2016-07-27 08:09:06 +02:00
FichteFoll
ca02a8c88d Fix read_lines_splits_lines test for CRLF endings 2016-07-27 03:36:20 +02:00
Ian Cordasco
80450ff097
Ensure we're only on Python 2.7
As FichteFoll pointed out on IRC, this line could include Python 3s
less than 3.2 as well.
2016-07-26 19:55:54 -05:00
Ian Cordasco
3936141209
Update version and release notes for 3.0.2 2016-07-26 19:50:54 -05:00
Ian Cordasco
12dcb10c90
Make the documentation very obvious 2016-07-26 19:49:36 -05:00
Ian Cordasco
0e8d7cb7e2 Merge branch 'entry-point' into 'master'
Clarify what the X in the entry points does

*Description of changes*

Previously the `X` wasn't further explained in the documentation on how to
register a plugin. This plugs the hole at least for checking plugins.

*Related to:*  #183

See merge request !93
2016-07-27 00:45:31 +00:00
Ian Cordasco
e51fc5458b
Fix handling of logical lines with noqa
When attempting to centralize all inline NoQA handling in the StyleGuide
we inadvertently broke plugins relying on it in combination with checker
state. For example, the check for E402 relies both on NoQA and the state
to determine if it has seen a non-import line. Placing NoQA on the sole
line that is not an import is more elegant than placing it on each of
the following import lines.

Closes #186
2016-07-26 19:45:05 -05:00
Ian Cordasco
6eca38f2f2
Fix zero-indexed column numbering
We accidentally changed column numbering from one-indexed to
zero-indexed.
2016-07-26 19:45:05 -05:00
FichteFoll
f27d47e87e _job_count always returns an int 2016-07-27 02:01:51 +02:00
Ian Cordasco
ec6165e9d8 Merge branch 'uncap-flake8' into 'master'
Update our flake8 testenv dependencies

*Description of changes*

Uncap Flake8 and add a lower bound to flake8-import-order

*Related to:*  N/A

See merge request !94
2016-07-26 19:38:59 +00:00
Ian Cordasco
3766f3a584 Update our flake8 testenv dependencies
We had capped Flake8 until flake8-import-order created a new release. We
can now add a lower bound to flake8-import-order and uncap Flake8.
2016-07-26 19:32:49 +00:00
Ian Cordasco
c40b562feb
Move the unreleased note to the right version 2016-07-26 11:29:34 -05:00
Fabian Neundorf
9f10219137 Clarify what the X in the entry points does
Previously the `X` wasn't further explained in the documentation on how to
register a plugin. This plugs the hole at least for checking plugins.

See also: #183
2016-07-26 17:57:51 +02:00
Ian Cordasco
99602828c7 Merge branch 'bug/181' into 'master'
Fix project config file discovery

*Description of changes*

Keep searching past the current directory to find project config files.

*Related to:*  #181

See merge request !91
2016-07-26 14:40:44 +00:00
Ian Cordasco
df2fa18a08
Fix project config file discovery
Flake8 3.0 was stopping once it found the current directory but the
historical behaviour (that we didn't intend to break) searched past
that (towards root) until it found one of the project/local config
file names that could be read.

Closes #181
2016-07-26 09:37:32 -05:00
Ian Cordasco
f82b5d62d0
Update NOQA regular expression
This allows for other text after `# noqa`.

Related to #180
2016-07-26 06:24:04 -05:00
Ian Cordasco
88d9213962
Add release notes for 3.0.1 2016-07-25 19:43:27 -05:00
Ian Cordasco
b9658eaaae Merge branch 'bug/180' into 'master'
Handle repeated --quiet options again

*Description of changes*

Handle `-q`/`--quiet` again.

*Related to:*  #180

See merge request !89
2016-07-26 00:41:08 +00:00
Ian Cordasco
222292c4b2
Handle repeated --quiet options again
Fundamentally on Flake8 2.x using -q altered the format of the errors
(and the behaviour a little) so it makes the most sense to implement
this logic with formatters rather than messy logic spread throughout
the project.

The FilenameOnly formatter will keep track of filenames already reported
and only print the name once while Nothing will print nothing.

Closes #180
2016-07-25 19:38:19 -05:00
Ian Cordasco
667a01f8df Merge branch 'bug/180' into 'master'
Wire-up --statistics again

*Description of changes*

Make `--statistics` work again

*Related to:*  #180

See merge request !87
2016-07-25 19:57:36 +00:00
Ian Cordasco
427c4b53ef Merge branch 'bug/output-file' into 'master'
Set-up and stop our formatter

*Description of changes*

Make `--output-file` work consistently (especially without verbose logging)

*Related to:*  #180

See merge request !86
2016-07-25 19:57:13 +00:00
Ian Cordasco
4dc1d11a62
Wire-up --statistics again
I'm not sure where this code went or when, but it disappeared. Let's
add it back.

Related #180
2016-07-25 14:29:09 -05:00
Ian Cordasco
559e08a09f
Set-up and stop our formatter
Without calling start and stop, our output file is not used by our
Formatters and any formatting plugins.

Related #180
2016-07-25 14:11:53 -05:00
Ian Cordasco
232ef0ed31 Merge branch 'file-plugin-docs' into 'master'
Update documentation to separate parameter types

This is the documentation update separated from !80 which should be pretty uncontroversial. I already applied the comment on the documentation here.

See merge request !83
2016-07-25 18:11:28 +00:00
Ian Cordasco
fc035c4df2 Merge branch 'bug/177' into 'master'
Handle multiline strings with '# noqa'

*Description of changes*

I had overlooked a usecase of Flake8 where people use `# noqa` at the end of a multi-line string. This addresses that oversight

*Related to:*  #177

See merge request !85
2016-07-25 16:08:16 +00:00
Ian Cordasco
299e200cb9
Handle multiline strings with '# noqa'
In Flake8 2.x we allowed people to use # noqa at the end of a multiline
string to ignore errors inside the string (e.g., E501). Being blissfully
ignorant of this, I never accounted for it in Flake8 3. This fixes the
oversight and allows multiline statements to have the # noqa at the end.

Closes #177
2016-07-25 11:00:18 -05:00
Fabian Neundorf
3191c44cfc Update documentation to separate parameter types
It updates the documentation to separate which parameters are static and
which are changed on each line. Using the latter parameters on plugins which
are only run once per file isn't very sensible.
2016-07-25 15:45:44 +02:00
Ian Cordasco
217aa8185c Merge branch 'unbreak-builds' into 'master'
Force flake8 test to below 3.x

The current version (0.8) of `flake8-import-order` still uses `parser.config_options` and so all builds fail because it installs Flake8 3.x.

Now the repository of that plugin already accounted for that but as long as it isn't released it'll cause all new builds to fail. Alternatively I can repurpose this merge request to actually enforce a newer version of `flake8-import-order` which supports Flake8 3.x.

See merge request !84
2016-07-25 12:26:25 +00:00
Fabian Neundorf
777e7e3854 Force flake8 test to below 3.x
Because flake8-import-order does not support Flake8 3.x yet, we need to force
a Flake8 version that is supported.
2016-07-25 13:53:10 +02:00
Ian Cordasco
ff0bf5f0f9
Update release notes and version string for 3.0 2016-07-24 20:11:48 -05:00
Ian Cordasco
455066cd52
Merge branch 'run-functions' 2016-07-24 20:04:59 -05:00
Ian Cordasco
5f9c0bde23
Relocate integration style checker tests 2016-07-24 20:04:48 -05:00
Fabian Neundorf
373eb15573 Support functions as file plugins too
It is possible to write plugins which are only a function. At the moment they
are called on each line manually. This allows the function also to be called
on each file once. It works similar to creating the class and calling `run` on
it immediately. The plugin function needs to return a generator.

This is based on the original comment in the `FileChecker.run_ast_checks`
method, but slightly modified as the original comment would've called the
return of the function. But the function could return the reports directly.
2016-07-24 16:27:05 +02:00
Ian Cordasco
698079f87a Merge branch 'windows-bugs' into 'master'
Check for both os.path.sep and os.path.altsep

*Description of changes*

When normalizing paths, we want to handle the following cases:

- Someone is using a Windows-style path on Windows
- Someone is using a Unix style path on Unix
- Someone is using a Unix style path on Windows

os.path.sep will handle the native directory separator character while os.path.altsep (when set) will handle alternate separators. Further,  os.path.abspath does the right thing on Windows when handed a Unix-style path.

*Related to:*  #175

See merge request !81
2016-07-22 22:16:45 +00:00
Ian Cordasco
4a46412bf6
Check for alternate_separator only when truthy
In the case where alternate separator is None, we use '' which will
always be in any string. We want to skip that case.

Also we only run our tests on AppVeyor, not all of our testenvs.
2016-07-22 17:12:49 -05:00
Ian Cordasco
473106fee1
Check for both os.path.sep and os.path.altsep
When normalizing paths, we want to handle the following cases:

- Someone is using a Windows-style path on Windows
- Someone is using a Unix style path on Unix
- Someone is using a Unix style path on Windows

os.path.sep will handle the native directory separator character while
os.path.altsep (when set) will handle alternate separators. Further,
os.path.abspath does the right thing on Windows when handed a Unix-style
path.

Related to #175
2016-07-22 17:07:52 -05:00
Ian Cordasco
a8753b3ff9
Add AppVeyor config file
Closes #174
2016-07-22 08:26:41 -05:00
Ian Cordasco
c3ee4829ed Merge branch 'fix-typo-indect' into 'master'
Fix typo in documentation using `indect`

Found this typo while working through the source code.

See merge request !79
2016-07-21 16:28:10 +00:00
Fabian Neundorf
965d6f9509 Fix typo in documentation using indect
The documentation for the `FileProcessor` class used `indect_char` while the
class itself uses the more sensible name `indent_char`. This updates both the
docstring as well as the documentation.
2016-07-21 13:59:07 +02:00
Ian Cordasco
1dad1e3a95
Merge branch 'pr/78'
Closes #78
2016-07-20 19:29:32 -05:00
Ian Cordasco
a1fdb5a2b5
Fix up merge request 78
This simplifies the changes, reduces the scope of refactors apparently
for refactoring's sake and ensures that the internals are reasonable.

It also airs on the side of preserving information rather than
discarding or overwriting it.
2016-07-20 19:28:13 -05:00
Leonardo Rochael Almeida
7934f8dce2 Propagate the stdin_display_name to checker and processor
This way plugins like flake8-putty can have access to the correct filename.
2016-07-20 18:45:01 -03:00
Leonardo Rochael Almeida
b2b4cae8e3 Allow stdin and directly named files to be excluded from check
For the sake of IDEs, check filename for exclusion even if the file is directly
named in the command line.

Also, if the filename is "-" (stdin) check the provided display name for
exclusion.

Also, avoid calling path checking functions on the "-" filename:

 * fnmatch.fnmatch()
 * os.path.isdir()
 * os.path.exists()
2016-07-20 18:45:01 -03:00
Ian Cordasco
d69cb0564a Merge branch 'document-polyfill' into 'master'
Document flake8-polyfill in compatibility section

*Description of changes*

Document the existence and usage of the flake8-polyfill section.

Closes: #158 
Closes: #161 
Closes: #167 

See merge request !77
2016-07-20 13:49:12 +00:00