setup.cfg 832 B

123456789101112131415161718192021222324252627
  1. [pytest]
  2. python_files = test*.py
  3. addopts = --tb=native -p no:doctest
  4. norecursedirs = bin dist docs htmlcov script hooks node_modules .* {args}
  5. looponfailroots = src tests
  6. selenium_driver = phantomjs
  7. phantomjs_path = node_modules/phantomjs-prebuilt/bin/phantomjs
  8. [flake8]
  9. ignore = F999,E501,E128,E124,E402,W503,E731,C901
  10. max-line-length = 100
  11. exclude = .git,*/south_migrations/*,node_modules/*,src/sentry/static/sentry/vendor/*,docs/*,src/south/*
  12. [bdist_wheel]
  13. python-tag = py27
  14. [yapf]
  15. based_on_style = pep8
  16. blank_line_before_nested_class_or_def = false
  17. blank_line_before_class_docstring = false
  18. coalesce_brackets = false
  19. column_limit = 100
  20. dedent_closing_brackets = true
  21. each_dict_entry_on_separate_line = true
  22. indent_dictionary_value = false
  23. split_before_dict_set_generator = false
  24. split_arguments_when_comma_terminated = false