mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 15:33:10 +01:00
23 lines
743 B
Nix
23 lines
743 B
Nix
# flakelight -- Framework for simplifying flake setup
|
|
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ config, lib, src, ... }:
|
|
let
|
|
inherit (lib) mkEnableOption mkIf optionalString pathExists;
|
|
in
|
|
{
|
|
options.flakelight.editorconfig =
|
|
mkEnableOption "editorconfig check" // { default = true; };
|
|
|
|
config.checks = mkIf
|
|
(config.flakelight.editorconfig && (pathExists (src + /.editorconfig)))
|
|
{
|
|
# By default, high false-positive flags are disabled.
|
|
editorconfig = { editorconfig-checker, ... }:
|
|
"${editorconfig-checker}/bin/editorconfig-checker"
|
|
+ optionalString (!pathExists (src + /.ecrc))
|
|
" -disable-indent-size -disable-max-line-length";
|
|
};
|
|
}
|