Skip to content

Commit

Permalink
Merge pull request #1177 from airbnb/fix_landscape
Browse files Browse the repository at this point in the history
Fixing landscape's config
  • Loading branch information
mistercrunch committed Mar 20, 2016
2 parents ed82fcc + 986a319 commit d40a7d3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 19 deletions.
23 changes: 4 additions & 19 deletions .landscape.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,12 @@
doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 90
strictness: medium
pep8:
full: true
uses:
- flask
autodetect: no
requirements:
- scripts/ci/requirements.txt
- flask
pylint:
disable:
- cyclic-import
- invalid-name
options:
docstring-min-length: 10
pep8:
full: true
ignore-paths:
- docs
- dashed/migrations/env.py
- dashed/ascii_art.py
ignore-patterns:
- ^example/doc_.*\.py$
- (^|/)docs(/|$)
python-targets:
- 2
- 3
14 changes: 14 additions & 0 deletions airflow/jobs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# -*- coding: utf-8 -*-
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
Expand Down
14 changes: 14 additions & 0 deletions airflow/settings.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# -*- coding: utf-8 -*-
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
Expand Down

0 comments on commit d40a7d3

Please sign in to comment.