├── .gitignore ├── README.md ├── architectural-guideline ├── README.md └── practices │ ├── layering_approach.md │ ├── networking.md │ ├── routing.md │ └── viper.md └── code_style_guideline ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── code_style_guideline.md ├── examples └── ExamplePresenter.swift ├── function_Declarations_examples.md └── screens ├── check-spelling-suggestion.png ├── check-spelling.png ├── example-of-column-character-limit.png ├── text-editing-display-column.png ├── text-editing-tab-width-indent.png └── text-editing-while-editing.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /architectural-guideline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/architectural-guideline/README.md -------------------------------------------------------------------------------- /architectural-guideline/practices/layering_approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/architectural-guideline/practices/layering_approach.md -------------------------------------------------------------------------------- /architectural-guideline/practices/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/architectural-guideline/practices/networking.md -------------------------------------------------------------------------------- /architectural-guideline/practices/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/architectural-guideline/practices/routing.md -------------------------------------------------------------------------------- /architectural-guideline/practices/viper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/architectural-guideline/practices/viper.md -------------------------------------------------------------------------------- /code_style_guideline/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/CONTRIBUTING.md -------------------------------------------------------------------------------- /code_style_guideline/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /code_style_guideline/code_style_guideline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/code_style_guideline.md -------------------------------------------------------------------------------- /code_style_guideline/examples/ExamplePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/examples/ExamplePresenter.swift -------------------------------------------------------------------------------- /code_style_guideline/function_Declarations_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/function_Declarations_examples.md -------------------------------------------------------------------------------- /code_style_guideline/screens/check-spelling-suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/check-spelling-suggestion.png -------------------------------------------------------------------------------- /code_style_guideline/screens/check-spelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/check-spelling.png -------------------------------------------------------------------------------- /code_style_guideline/screens/example-of-column-character-limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/example-of-column-character-limit.png -------------------------------------------------------------------------------- /code_style_guideline/screens/text-editing-display-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/text-editing-display-column.png -------------------------------------------------------------------------------- /code_style_guideline/screens/text-editing-tab-width-indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/text-editing-tab-width-indent.png -------------------------------------------------------------------------------- /code_style_guideline/screens/text-editing-while-editing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trendyol/ios-guidelines/HEAD/code_style_guideline/screens/text-editing-while-editing.png --------------------------------------------------------------------------------