File tree 3 files changed +36
-13
lines changed
3 files changed +36
-13
lines changed Original file line number Diff line number Diff line change 15
15
" .pylintrc"
16
16
],
17
17
"files.eol" : " \n " ,
18
- "python.unitTest.pyTestArgs " : [
18
+ "python.testing.pytestArgs " : [
19
19
" pylintfileheadertest"
20
20
],
21
- "python.unitTest .unittestEnabled" : false ,
22
- "python.unitTest .nosetestsEnabled" : false ,
23
- "python.unitTest.pyTestEnabled " : true
21
+ "python.testing .unittestEnabled" : false ,
22
+ "python.testing .nosetestsEnabled" : false ,
23
+ "python.testing.pytestEnabled " : true
24
24
}
Original file line number Diff line number Diff line change 2
2
All notable changes to the "pylintfileheader" pypi package will be documented in this file.
3
3
This project follows [ semantic versioning] ( https://semver.org/ ) .
4
4
5
- ## 2019-10-30 - v0.1.0
6
- * ** DEPRECATED** python 2.7 support: The next major release will drop support for python 2.7
7
- * ** Added** [ CI jobs] ( https://travis-ci.org/HaaLeo/pylint-file-header ) to test against all supported python versions
5
+ ## Unreleased
8
6
9
- ## 2018-11-28 - v0.0.2
10
- * ** Added** [ code coverage] ( https://codecov.io/gh/HaaLeo/pylint-file-header )
11
- * ** Fixed** example usage in the readme
7
+ ## 2020-12-28 - [ v0.2.0] ( https://github.com/HaaLeo/pylint-file-header/tree/v0.2.0 )
8
+
9
+ ### Added
10
+ * option ` file-header-ignore-empty-files ` to ignore empty files ([ #1 ] ( https://github.com/HaaLeo/pylint-file-header/issues/1 ) ) contributed by Sergey Vilgelm ([ @SVilgelm ] ( https://github.com/SVilgelm ) )
11
+
12
+ [ All Changes] ( https://github.com/HaaLeo/pylint-file-header/compare/v0.1.0...v0.2.0 )
13
+
14
+ ## 2019-10-30 - [ v0.1.0] ( https://github.com/HaaLeo/pylint-file-header/tree/v0.1.0 )
15
+
16
+ ### DEPRECATED
17
+ * python 2.7 support: The next major release will drop support for python 2.7
18
+
19
+ ### Added
20
+ * [ CI jobs] ( https://travis-ci.org/HaaLeo/pylint-file-header ) to test against all supported python versions
21
+
22
+ [ All Changes] ( https://github.com/HaaLeo/pylint-file-header/compare/v0.0.2...v0.1.0 )
23
+
24
+ ## 2018-11-28 - [ v0.0.2] ( https://github.com/HaaLeo/pylint-file-header/tree/v0.0.2 )
25
+
26
+ ### Added
27
+ * [ code coverage] ( https://codecov.io/gh/HaaLeo/pylint-file-header )
28
+
29
+ ### Fixed
30
+ * example usage in the readme
31
+
32
+ [ All Changes] ( https://github.com/HaaLeo/pylint-file-header/compare/v0.0.1...v0.0.2 )
33
+
34
+ ## 2018-11-25 - [ v0.0.1] ( https://github.com/HaaLeo/pylint-file-header/tree/v0.0.1 )
12
35
13
- ## 2018-11-25 - v0.0.1
14
36
* ** Initial Release**
15
- * ** Added** a feature that enables pylint to lint for a consistent file header
37
+ ### Added
38
+ * a feature that enables pylint to lint for a consistent file header
Original file line number Diff line number Diff line change 13
13
setup (
14
14
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
15
15
name = 'pylintfileheader' ,
16
- version = '0.1 .0' ,
16
+ version = '0.2 .0' ,
17
17
packages = find_packages (exclude = ['*test' ]),
18
18
description = 'Enables pylint to force a consistent file header.' ,
19
19
long_description = LONG_DESCRIPTION ,
You can’t perform that action at this time.
0 commit comments