mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2025-12-11 20:15:30 +01:00
* Implement dowload of mobile native deps - Add a spinner animation to `pnpm prep` - Change abandoned dependency @iarna/toml with smol-toml - Validate cargo config.toml after generating it from mustache template - Disabled HTTP2 downloads with udici, it is very broken * Initial ios native deps xcframework logic * Remove logic for handling dynamic iOS libs, using static libs now * Fix PATH in build-rust.sh - Remove app.json * Restore crates/images/src/pdf.rs * minor fix .editorconfig * Finally ios successfully compiles with ffmpeg enabled - Change SDCore.podspec to add extra libraries required by ffmpeg - Fix heif linking for ios in config.toml template - Add symlink logic for extra libraries required to compile ios in build-rust.sh
91 lines
2.0 KiB
INI
91 lines
2.0 KiB
INI
# EditorConfig is awesome: http://EditorConfig.org
|
|
|
|
# https://github.com/jokeyrhyme/standard-editorconfig
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# defaults
|
|
[*]
|
|
charset = utf-8
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
indent_style = tab
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
# CSS
|
|
# https://google.github.io/styleguide/htmlcssguide.xml#General_Formatting_Rules
|
|
# http://cssguidelin.es/#syntax-and-formatting
|
|
[*.css]
|
|
trim_trailing_whitespace = true
|
|
|
|
# HTML
|
|
# https://google.github.io/styleguide/htmlcssguide.xml#General_Formatting_Rules
|
|
[*.{htm,html}]
|
|
trim_trailing_whitespace = true
|
|
|
|
# Just
|
|
# https://github.com/casey/just/master/justfile
|
|
[{justfile,Justfile}]
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
|
|
# JavaScript, JSON, JSX, JavaScript Modules, TypeScript
|
|
# https://github.com/feross/standard
|
|
# https://prettier.io
|
|
[*.{cjs,js,json,jsx,mjs,ts,tsx}]
|
|
indent_size = 4
|
|
|
|
# Kotlin
|
|
# https://kotlinlang.org/docs/coding-conventions.html#indentation
|
|
[*.{kt,kts}]
|
|
indent_size = 4
|
|
|
|
# PowerShell
|
|
# https://poshcode.gitbook.io/powershell-practice-and-style/style-guide/code-layout-and-formatting
|
|
[*.{ps1,psd1,psm1}]
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
# Prisma
|
|
# https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-schema/data-model#formatting
|
|
[*.prisma]
|
|
indent_style = space
|
|
|
|
# Rust
|
|
# https://github.com/rust-lang/rust/blob/master/src/doc/style/style/whitespace.md
|
|
[*.rs]
|
|
indent_size = 4
|
|
insert_final_newline = false
|
|
trim_trailing_whitespace = true
|
|
|
|
# Shell
|
|
# https://google.github.io/styleguide/shell.xml#Indentation
|
|
[*.{bash,sh,zsh}]
|
|
indent_style = space
|
|
|
|
# SQL
|
|
# https://www.sqlstyle.guide/
|
|
[*.sql]
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
# Swift
|
|
# https://github.com/apple/swift-format/blob/main/Documentation/Configuration.md#example
|
|
[*.swift]
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
# Ruby
|
|
# http://www.caliban.org/ruby/rubyguide.shtml#indentation
|
|
[*.{rb,podspec}]
|
|
indent_size = 2
|
|
indent_style = space
|
|
|
|
# YAML
|
|
# http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668
|
|
[*.{yaml,yml}]
|
|
indent_style = space
|
|
|