Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
39 lines
776 B
Nix
39 lines
776 B
Nix
# SPDX-FileCopyrightText: 2018-2021 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{
|
|
home.file = {
|
|
".sqliterc".text = ''
|
|
.headers ON
|
|
'';
|
|
|
|
".pylintrc".text = ''
|
|
disable =
|
|
import-error,
|
|
invalid-name,
|
|
missing-docstring,
|
|
too-few-public-methods,
|
|
too-many-arguments,
|
|
too-many-instance-attributes
|
|
'';
|
|
|
|
".gdbinit".text = /* gdb */ ''
|
|
# history
|
|
set history save on
|
|
set history filename ~/.gdb_history
|
|
|
|
# safe directories are not managed (include per-project paths)
|
|
source ~/.gdb_safe
|
|
'';
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"pycodestyle".text = /* ini */ ''
|
|
[pycodestyle]
|
|
ignore = E265
|
|
max-line-length = 120
|
|
'';
|
|
};
|
|
}
|