This file contains hidden or 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
| { | |
| "version": "https://jsonfeed.org/version/1.1", | |
| "title": "Example Team Prompt Library", | |
| "description": "A sample collection of prompts for software development teams", | |
| "home_page_url": "https://example.com", | |
| "feed_url": "https://example.com/prompts.json", | |
| "icon": "https://example.com/icon.png", | |
| "authors": [ | |
| { | |
| "name": "Engineering Team", |
This file contains hidden or 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
| // Configuration globale au projet de JSHint | |
| // ========================================= | |
| // | |
| // (Y compris celui intégré à votre EDI/éditeur, normalement) | |
| // | |
| // [Liste complète des options possibles](http://www.jshint.com/docs/options/) | |
| { | |
| // Options de restriction | |
| // ---------------------- |
This file contains hidden or 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
| <button class="button button-default">Default</button> | |
| <button class="button button-success">Success</button> | |
| <button class="button button-warning">Warning</button> | |
| <button class="button button-info">Info</button> |
This file contains hidden or 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
Show hidden characters
| { | |
| "auto_indent": true, | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Aurora Color Scheme/Aurora.tmTheme", | |
| "detect_indentation": true, | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".DS_Store", |
This file contains hidden or 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
| [user] | |
| name = You Name | |
| email = [email protected] | |
| [color] | |
| ui = auto | |
| [alias] | |
| # View the current working tree status using the short format |
This file contains hidden or 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
| <form class="stars-rating"> | |
| <fieldset> | |
| <legend>Rate this product</legend> | |
| <input type="radio" id="star5" class="stars-rating__item-input" name="rating" value="5" /> | |
| <label for="star5" class="stars-rating__item-label"title="Awesome!">5 stars</label> | |
| <input type="radio" id="star4" class="stars-rating__item-input" name="rating" value="4" /> | |
| <label for="star4" class="stars-rating__item-label"title="Nice!">4 stars</label> | |
| <input type="radio" id="star3" class="stars-rating__item-input" name="rating" value="3" /> | |
| <label for="star3" class="stars-rating__item-label"title="Bof!">3 stars</label> | |
| <input type="radio" id="star2" class="stars-rating__item-input"name="rating" value="2" /> |
This file contains hidden or 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
| <div class="message message--warning"> | |
| <p>This is a message warning</p> | |
| <button class="message__button_close">Close</button> | |
| </div> | |
| <div class="message message--success"> | |
| <p>This is a message warning</p> | |
| <button class="message__button_close">Close</button> | |
| </div> | |
| <div class="message message--info"> | |
| <p>This is a message warning</p> |
This file contains hidden or 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
| <ul class="tab"> | |
| <li class="tab__item tab__item--current">Tab</li> | |
| <li class="tab__item">Tab</li> | |
| <li class="tab__item">Tab</li> | |
| <li class="tab__item">Tab</li> | |
| </ul> |
This file contains hidden or 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
| /*---------- Declare gulp variables ----------*/ | |
| var gulp = require('gulp'), | |
| jshint = require('gulp-jshint'), | |
| csslint = require('gulp-csslint'), | |
| compass = require('gulp-compass'), | |
| connect = require('gulp-connect'), path = require('path'), | |
| livereload = require('gulp-livereload'), | |
| clean = require('gulp-clean'), |
NewerOlder