forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge NixOS#324867: mypy 1.10.0 → 1.10.1
- Loading branch information
0 parents
commit 3a766f4
Showing
42,172 changed files
with
5,090,273 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
# EditorConfig configuration for nixpkgs | ||
# https://EditorConfig.org | ||
|
||
# Top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file, utf-8 charset | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
# Ignore diffs/patches | ||
[*.{diff,patch}] | ||
end_of_line = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
|
||
# We want readFile .version to return the version without a newline. | ||
[.version] | ||
insert_final_newline = false | ||
|
||
# see https://nixos.org/nixpkgs/manual/#chap-conventions | ||
|
||
# Match json/lockfiles/markdown/nix/perl/python/ruby/shell/docbook files, set indent to spaces | ||
[*.{json,lock,md,nix,pl,pm,py,rb,sh,xml}] | ||
indent_style = space | ||
|
||
# Match docbook files, set indent width of one | ||
[*.xml] | ||
indent_size = 1 | ||
|
||
# Match json/lockfiles/markdown/nix/ruby files, set indent width of two | ||
[*.{json,lock,md,nix,rb}] | ||
indent_size = 2 | ||
|
||
# Match perl/python/shell scripts, set indent width of four | ||
[*.{pl,pm,py,sh}] | ||
indent_size = 4 | ||
|
||
# Match gemfiles, set indent to spaces with width of two | ||
[Gemfile] | ||
indent_size = 2 | ||
indent_style = space | ||
|
||
# Disable file types or individual files | ||
# some of these files may be auto-generated and/or require significant changes | ||
|
||
[*.{c,h}] | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[*.{asc,key,ovpn}] | ||
insert_final_newline = unset | ||
end_of_line = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[*.lock] | ||
indent_size = unset | ||
|
||
# Although Markdown/CommonMark allows using two trailing spaces to denote | ||
# a hard line break, we do not use that feature in nixpkgs since | ||
# it forces the surrounding paragraph to become a <literallayout> which | ||
# does not wrap reasonably. | ||
# Instead of a hard line break, start a new paragraph by inserting a blank line. | ||
[*.md] | ||
trim_trailing_whitespace = true | ||
|
||
# binaries | ||
[*.nib] | ||
end_of_line = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
charset = unset | ||
|
||
[eggs.nix] | ||
trim_trailing_whitespace = unset | ||
|
||
[nixos/modules/services/networking/ircd-hybrid/*.{conf,in}] | ||
trim_trailing_whitespace = unset | ||
|
||
[pkgs/build-support/dotnetenv/Wrapper/**] | ||
end_of_line = unset | ||
indent_style = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[pkgs/development/compilers/elm/registry.dat] | ||
end_of_line = unset | ||
insert_final_newline = unset | ||
|
||
[pkgs/development/haskell-modules/hackage-packages.nix] | ||
indent_style = unset | ||
trim_trailing_whitespace = unset | ||
|
||
[pkgs/misc/documentation-highlighter/**] | ||
insert_final_newline = unset | ||
|
||
[pkgs/servers/dict/wordnet_structures.py] | ||
trim_trailing_whitespace = unset | ||
|
||
[pkgs/tools/misc/timidity/timidity.cfg] | ||
trim_trailing_whitespace = unset | ||
|
||
[pkgs/tools/virtualization/ovftool/*.ova] | ||
end_of_line = unset | ||
insert_final_newline = unset | ||
trim_trailing_whitespace = unset | ||
charset = unset | ||
|
||
[lib/tests/*.plist] | ||
indent_style = tab | ||
insert_final_newline = unset | ||
|
||
[pkgs/kde/generated/**] | ||
insert_final_newline = unset | ||
end_of_line = unset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
use nix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
# This file contains a list of commits that are not likely what you | ||
# are looking for in a blame, such as mass reformatting or renaming. | ||
# You can set this file as a default ignore file for blame by running | ||
# the following command. | ||
# | ||
# $ git config blame.ignoreRevsFile .git-blame-ignore-revs | ||
# | ||
# To temporarily not use this file add | ||
# --ignore-revs-file="" | ||
# to your blame command. | ||
# | ||
# The ignoreRevsFile can't be set globally due to blame failing if the file isn't present. | ||
# To not have to set the option in every repository it is needed in, | ||
# save the following script in your path with the name "git-bblame" | ||
# now you can run | ||
# $ git bblame $FILE | ||
# to use the .git-blame-ignore-revs file if it is present. | ||
# | ||
# #!/usr/bin/env bash | ||
# repo_root=$(git rev-parse --show-toplevel) | ||
# if [[ -e $repo_root/.git-blame-ignore-revs ]]; then | ||
# git blame --ignore-revs-file="$repo_root/.git-blame-ignore-revs" $@ | ||
# else | ||
# git blame $@ | ||
# fi | ||
|
||
|
||
# nixos/modules/rename: Sort alphabetically | ||
1f71224fe86605ef4cd23ed327b3da7882dad382 | ||
|
||
# manual: fix typos | ||
feddd5e7f8c6f8167b48a077fa2a5394dc008999 | ||
|
||
# nixos: fix module paths in rename.nix | ||
d08ede042b74b8199dc748323768227b88efcf7c | ||
|
||
# fix indentation in mk-python-derivation.nix | ||
d1c1a0c656ccd8bd3b25d3c4287f2d075faf3cf3 | ||
|
||
# fix indentation in meteor default.nix | ||
a37a6de881ec4c6708e6b88fd16256bbc7f26bbd | ||
|
||
# treewide: automatically md-convert option descriptions | ||
2e751c0772b9d48ff6923569adfa661b030ab6a2 | ||
|
||
# nixos/*: automatically convert option docs | ||
087472b1e5230ffc8ba642b1e4f9218adf4634a2 | ||
|
||
# nixos/*: automatically convert option descriptions | ||
ef176dcf7e76c3639571d7c6051246c8fbadf12a | ||
|
||
# nixos/*: automatically convert option docs to MD | ||
61e93df1891972bae3e0c97a477bd44e8a477aa0 | ||
|
||
# nixos/*: convert options with admonitions to MD | ||
722b99bc0eb57711c0498a86a3f55e6c69cdb05f | ||
|
||
# nixos/*: automatically convert option docs | ||
6039648c50c7c0858b5e506c6298773a98e0f066 | ||
|
||
# nixos/*: md-convert options with unordered lists | ||
c915b915b5e466a0b0b2af2906cd4d2380b8a1de | ||
|
||
# nixos/*: convert options with listings | ||
f2ea09ecbe1fa1da32eaa6e036d64ac324a2986f | ||
|
||
# nixos/*: convert straggler options to MD | ||
1d41cff3dc4c8f37bb5841f51fcbff705e169178 | ||
|
||
# nixos/*: normalize manpage references to single-line form | ||
423545fe4865d126e86721ba30da116e29c65004 | ||
|
||
# nixos/documentation: split options doc build | ||
fc614c37c653637e5475a0b0a987489b4d1f351d | ||
|
||
# nixos/*: convert options with admonitions to MD | ||
722b99bc0eb57711c0498a86a3f55e6c69cdb05f | ||
|
||
# nixos/*: convert internal option descriptions to MD | ||
9547123258f69efd92b54763051d6dc7f3bfcaca | ||
|
||
# nixos/*: replace </para><para> with double linebreaks | ||
694d5b19d30bf66687b42fb77f43ea7cd1002a62 | ||
|
||
# treewide: add defaultText for options with simple interpolation defaults | ||
fb0e5be84331188a69b3edd31679ca6576edb75a | ||
|
||
# nixos/*: mark pre-existing markdown descriptions as mdDoc | ||
7e7d68a250f75678451cd44f8c3d585bf750461e | ||
|
||
# nixos/*: normalize link format | ||
3aebb4a2be8821a6d8a695f0908d8567dc00de31 | ||
|
||
# nixos/*: replace <code> in option docs with <literal> | ||
16102dce2fbad670bd47dd75c860a8daa5fe47ad | ||
|
||
# nixos/*: add trivial defaultText for options with simple defaults | ||
25124556397ba17bfd70297000270de1e6523b0a | ||
|
||
# systemd: rewrite comments | ||
92dfeb7b3dab820ae307c56c216d175c69ee93cd | ||
|
||
# systemd: break too long lines of Nix code | ||
67643f8ec84bef1482204709073e417c9f07eb87 | ||
|
||
# {pkgs/development/cuda-modules,pkgs/test/cuda,pkgs/top-level/cuda-packages.nix}: reformat all CUDA files with nixfmt-rfc-style 2023-03-01 | ||
802a1b4d3338f24cbc4efd704616654456d75a94 | ||
|
||
# postgresql: move packages.nix to ext/default.nix | ||
719034f6f6749d624faa28dff259309fc0e3e730 | ||
|
||
# php ecosystem: reformat with nixfmt-rfc-style | ||
75ae7621330ff8db944ce4dff4374e182d5d151f | ||
c759efa5e7f825913f9a69ef20f025f50f56dc4d | ||
|
||
# pkgs/os-specific/bsd: Reformat with nixfmt-rfc-style 2024-03-01 | ||
3fe3b055adfc020e6a923c466b6bcd978a13069a | ||
|
||
# k3s: format with nixfmt-rfc-style | ||
6cfcd3c75428ede517bc6b15a353d704837a2830 | ||
|
||
# python3Packages: format with nixfmt | ||
59b1aef59071cae6e87859dc65de973d2cc595c0 | ||
|
||
# treewide description changes (#317959) | ||
bf995e3641950f4183c1dd9010349263dfa0123b | ||
755b915a158c9d588f08e9b08da9f7f3422070cc | ||
f8c4a98e8e138e21353a2c33b90db3359f539b37 | ||
|
||
# vscode-extensions.*: format with nixfmt (RFC 166) | ||
7bf9febfa6271012b1ef86647a3a06f06875fdcf | ||
|
||
# remove uses of mdDoc (#303841) | ||
1a24330f792c8625746d07d842290e6fd95ae6f9 | ||
acd0e3898feb321cb9a71a0fd376f1157d0f4553 | ||
1b28414d2886c57343864326dbb745a634d3e37d | ||
6afb255d976f85f3359e4929abd6f5149c323a02 | ||
|
||
# azure-cli: move to by-name, nixfmt #325950 | ||
96cd538b68bd1d0a0a37979356d669abbba32ebc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
**/deps.nix linguist-generated | ||
**/deps.json linguist-generated | ||
**/deps.toml linguist-generated | ||
**/node-packages.nix linguist-generated | ||
|
||
pkgs/applications/editors/emacs-modes/*-generated.nix linguist-generated | ||
pkgs/development/r-modules/*-packages.nix linguist-generated | ||
pkgs/development/haskell-modules/hackage-packages.nix linguist-generated | ||
pkgs/development/beam-modules/hex-packages.nix linguist-generated | ||
|
||
doc/** linguist-documentation | ||
doc/default.nix linguist-documentation=false | ||
|
||
nixos/doc/** linguist-documentation | ||
nixos/doc/default.nix linguist-documentation=false | ||
|
||
nixos/modules/module-list.nix merge=union | ||
# pkgs/top-level/all-packages.nix merge=union |
Oops, something went wrong.