Skip to content

Instantly share code, notes, and snippets.

View stephenmirving's full-sized avatar
🏠
Working from home

Stephen Irving stephenmirving

🏠
Working from home
View GitHub Profile
@stephenmirving
stephenmirving / .prettierrc
Created January 11, 2024 06:55
Prettier Configuration file
{
"autoClosingTags": false,
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"endOfLine": "lf",
"experimentalTernaries": true,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "consistent",
@stephenmirving
stephenmirving / settings.json
Last active January 11, 2024 07:06
VSCode Settings
{
"cssPeek.peekToExclude": [
"**/node_modules/**",
"**/bower_components/**",
"**/*.min.css"
],
"tabnine.experimentalAutoImports": true,
"cssPeek.peekFromLanguages": [
"html",
"django-html",
@stephenmirving
stephenmirving / .stylelintrc.json
Last active January 9, 2024 02:24
Stylelint Config File
{
"ignoreFiles": [
"node_modules/**",
"**/*.css",
"**/*.html"
],
"plugins": [
"stylelint-scss",
"stylelint-group-selectors",
"stylelint-order",
@stephenmirving
stephenmirving / extensions.json
Last active March 16, 2020 06:01
VSCode's Settings - Syncing
[
{
"id": "a-bentofreire.vsctoix",
"name": "vsctoix",
"publisher": "a-bentofreire",
"version": "1.8.0"
},
{
"id": "aaronthomas.vscode-snazzy-operator",
"name": "vscode-snazzy-operator",
/**
* FILE - AddInstructorUI.java
* PURPOSE - Generates the user interface and associated event handling for the add instructor window.
* Programmed for the Fall Semester of CPT 237 at Trident Technical College.
* EDIT - 09/22/2016
* @author - Stephen M. Irving
*/
package edu.tridenttech.cpt237.irving.neptuneregistration.view;