├── sample.png ├── logo-128.png ├── logo-16.png ├── logo-256.png ├── logo-32.png ├── logo-512.png ├── logo-64.png ├── _config.yml ├── assets └── css │ └── style.scss ├── README.md ├── logo.svg ├── _layouts └── default.html └── gh └── index.html /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/sample.png -------------------------------------------------------------------------------- /logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-128.png -------------------------------------------------------------------------------- /logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-16.png -------------------------------------------------------------------------------- /logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-256.png -------------------------------------------------------------------------------- /logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-32.png -------------------------------------------------------------------------------- /logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-512.png -------------------------------------------------------------------------------- /logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jezdez/fussyfox.github.io/master/logo-64.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal 2 | title: Fussy Fox 3 | logo: logo.svg 4 | show_downloads: false 5 | google_analytics: ca-pub-9672734556318090 6 | -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | header h1 a { 6 | color: #222; 7 | } 8 | 9 | .downloads li { 10 | width: 50%; 11 | } 12 | 13 | .downloads li + li { 14 | border-right: none; 15 | margin-left: -1px; 16 | width: 50%; 17 | } 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fussy Fox 2 | 3 | _Fussy Fox is a real-time code linting platform for GitHub_ 4 | 5 | Make your reviews about content and your CI suite about tests. 6 | Let us worry about style 😎 7 | 8 | Fussy Fox provides a variety of static code analytic services. 9 | We use AWS Lambda to provide coders with lightning fast feedback on each commit. 10 | 11 | ![sample](sample.png) 12 | 13 | ### Setup 14 | 15 | The setup is simple. Just add a file config file to your repository specifying 16 | which linters you want to run. 17 | 18 | The configuration is stored in a simple YAML format in a file named 19 | `.checks.yml`. 20 | 21 | Sample config: `.checks.yml` 22 | 23 | ```YAML 24 | - bandit 25 | - flake8 26 | - isort 27 | ``` 28 | 29 | ### Love 30 | 31 | We are happy to add more tools, feel free to suggest some 32 | [over here](https://github.com/FussyFox/fussyfox.github.io/issues). 33 | -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 18 | 22 | 24 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | {% seo %} 21 | 22 | 25 | 26 | 27 |
28 |
29 | {% if site.logo %} 30 | Logo 31 | {% endif %} 32 | 33 |

{{ site.title | default: site.github.repository_name }}

34 | 35 |

{{ site.description | default: site.github.project_tagline }}

36 | 37 | 41 |
42 |
43 | 44 | {{ content }} 45 | 46 |
47 | 54 |
55 | 56 | {% if site.google_analytics %} 57 | 65 | {% endif %} 66 | 67 | 68 | -------------------------------------------------------------------------------- /gh/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lambda Lint 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 40 | 41 | 42 | 43 | 54 | 55 | 56 |
57 | 58 | Lambda Lint 59 |
60 | 61 | 62 |
63 | 64 | 65 |
66 | 67 |
loading…
68 | 69 | 70 |
71 | 72 | 103 | 104 | 105 | 106 | --------------------------------------------------------------------------------