├── .gitattributes ├── README.md ├── js └── performance │ └── prefer-scrollend-over-scroll.md └── liquid ├── code-smell └── abstract-repeated-logic-to-snippets.md └── performance ├── avoid-date-operations.md ├── avoid-passing-objects-to-snippets.md ├── avoid-rendering-offscreen-elements.md ├── avoid-unnecessary-json-operations.md ├── break-loops-early-when-possible.md ├── prefer-dynamic-references-to-global-lookups.md └── prefer-liquid-array-filters-over-loops.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Liquid LLM Rules 2 | 3 | -------------------------------------------------------------------------------- /js/performance/prefer-scrollend-over-scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/js/performance/prefer-scrollend-over-scroll.md -------------------------------------------------------------------------------- /liquid/code-smell/abstract-repeated-logic-to-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/code-smell/abstract-repeated-logic-to-snippets.md -------------------------------------------------------------------------------- /liquid/performance/avoid-date-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/avoid-date-operations.md -------------------------------------------------------------------------------- /liquid/performance/avoid-passing-objects-to-snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/avoid-passing-objects-to-snippets.md -------------------------------------------------------------------------------- /liquid/performance/avoid-rendering-offscreen-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/avoid-rendering-offscreen-elements.md -------------------------------------------------------------------------------- /liquid/performance/avoid-unnecessary-json-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/avoid-unnecessary-json-operations.md -------------------------------------------------------------------------------- /liquid/performance/break-loops-early-when-possible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/break-loops-early-when-possible.md -------------------------------------------------------------------------------- /liquid/performance/prefer-dynamic-references-to-global-lookups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/prefer-dynamic-references-to-global-lookups.md -------------------------------------------------------------------------------- /liquid/performance/prefer-liquid-array-filters-over-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonAgency/liquid-llm-rules/HEAD/liquid/performance/prefer-liquid-array-filters-over-loops.md --------------------------------------------------------------------------------