chore(ci): fix end-of-file newlines

This commit is contained in:
David Testé
2023-09-15 09:00:30 +02:00
committed by David Testé
parent 8ecf8879fb
commit 723910c669
11 changed files with 2 additions and 19 deletions

View File

@@ -72,4 +72,4 @@ if __name__ == "__main__":
print(f"[{param.tag}] reason: {reason} (param)")
sys.exit(int(1)) # Explicit conversion is needed to make this call work
else:
print("All parameters passed the security check")
print("All parameters passed the security check")

2
tfhe/.gitignore vendored
View File

@@ -1 +1 @@
build/
build/

View File

@@ -37,4 +37,3 @@ foreach (testsourcefile ${TEST_CASES})
# Enabled asserts even in release mode
add_definitions(-UNDEBUG)
endforeach (testsourcefile ${TEST_CASES})

View File

@@ -56,4 +56,3 @@
## API references
* [docs.rs](https://docs.rs/tfhe/)

View File

@@ -95,7 +95,3 @@ If the host machine supports AVX-512, then the argument `AVX512_SUPPORT=ON' shou
#Integer benchmarks:
make AVX512_SUPPORT=ON bench_integer
```

View File

@@ -139,6 +139,3 @@ let clear_result = clear_a + clear_b;
assert_eq!(decrypted_result, clear_result);
```

View File

@@ -63,6 +63,3 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}
```

View File

@@ -49,4 +49,3 @@ fn main() {
assert_eq!(clear, 255u8);
}
```

View File

@@ -5,4 +5,3 @@ const presets = [
];
module.exports = { presets };

View File

@@ -83,5 +83,3 @@ async function setup() {
setup()

View File

@@ -3,4 +3,3 @@ import { runTestAttachedToButton } from "./common.mjs";
test('Compressed Public Key Test', async () => {
await runTestAttachedToButton('compressedPublicKeyTest')
});