accountant-ui/grunt-config/flake8.js

11 lines
130 B
JavaScript
Raw Normal View History

2016-02-17 08:33:58 +01:00
'use strict';
2016-02-01 21:56:49 +01:00
module.exports = {
2016-10-15 11:45:39 +02:00
options: {
maxComplexity: 4
},
2016-02-01 21:56:49 +01:00
src: [
'accountant/**/*.py'
]
2016-02-17 08:33:58 +01:00
};