diff --git a/.lint-markdown/config.rb b/.lint-markdown/config.rb index bcaf631..77bbdd4 100644 --- a/.lint-markdown/config.rb +++ b/.lint-markdown/config.rb @@ -7,7 +7,7 @@ rule 'MD004' rule 'MD005' rule 'MD006' -rule 'MD007', :indent => 4 +rule 'MD007', :indent => 2 rule 'MD009' rule 'MD010' rule 'MD011' diff --git a/README.md b/README.md index 14cc635..053b3b9 100644 --- a/README.md +++ b/README.md @@ -85,25 +85,26 @@ We will achieve this by implementing + # Contents - [Prerequisites](#prerequisites) - - [Concepts](#concepts) - - [Software](#software) + - [Concepts](#concepts) + - [Software](#software) - [Backbone: Nix and Nixpkgs](#backbone-nix-and-nixpkgs) - [Running any Makes job](#running-any-makes-job) - [Running Makes on containers](#running-makes-on-containers) - [The makes.nix file](#the-makesnix-file) - - [Example builtin](#example-builtin) - - [Working with a Nixpkgs version](#working-with-a-nixpkgs-version) - - [Using imports](#using-imports) - - [Configuring the cache](#configuring-the-cache) + - [Example builtin](#example-builtin) + - [Working with a Nixpkgs version](#working-with-a-nixpkgs-version) + - [Using imports](#using-imports) + - [Configuring the cache](#configuring-the-cache) - [The example API](#the-example-api) - - [API Source Code](#api-source-code) - - [API Environment](#api-environment) - - [API makes.nix](#api-makesnix) - - [API main.nix](#api-mainnix) - - [API Deployments](#api-deployments) + - [API Source Code](#api-source-code) + - [API Environment](#api-environment) + - [API makes.nix](#api-makesnix) + - [API main.nix](#api-mainnix) + - [API Deployments](#api-deployments) - [References](#references) diff --git a/api/src/main.py b/api/src/main.py index 400e854..723ccb4 100644 --- a/api/src/main.py +++ b/api/src/main.py @@ -11,7 +11,7 @@ app = FastAPI() -class Item(BaseModel): +class Item(BaseModel): # pylint: disable=too-few-public-methods name: str price: float is_offer: Union[bool, None] = None diff --git a/makes.lock.nix b/makes.lock.nix index f42a7ee..be3feb0 100644 --- a/makes.lock.nix +++ b/makes.lock.nix @@ -1,6 +1,6 @@ { makesSrc = builtins.fetchGit { url = "https://github.com/fluidattacks/makes"; - ref = "refs/tags/22.08"; + ref = "refs/tags/22.11"; }; }