Skip to content

Instantly share code, notes, and snippets.

@krnd
krnd / .eslintignore
Last active August 13, 2020 17:51
javascript-eslintignore
# .eslintignore
#
# DESCRIPTION
# Generic configuration file specifying intentionally
# unlinted files when using ESLint.
#
# This configuration is based on the generic
# configuration published on GitHub.
#
# AUTHOR
@krnd
krnd / project_setup_script.sh
Last active August 13, 2020 18:49
unity-project_setup_script
# ./unity-git-project-setup-local-bare.sh
# (bash)
#
# DESCRIPTION
# Initialize Unity project for git and create local
# bare repo to use as remote.
#
# USAGE
# Copy the script into the Unity projects root
# directory and run it.
@krnd
krnd / gruntfile.js
Last active August 13, 2020 17:53
screeps-gruntfile
/**
* @file gruntfile.js
*
* @summary Configurable gruntfile for the game Screeps.
* @description
* Gruntfile to upload code to an arbitrary Screeps server and generating
* a documentation of the player code using `jsdoc`. The parameters of the
* grunt tasks are configurable using the custom configuration file.
*
* @author krnd
@krnd
krnd / jsdoc.json
Last active August 13, 2020 17:53
javascript-jsdoc
{
"plugins": [
"plugins/markdown"
],
"recursionDepth": 10,
"source": {
"include": ["./"],
"exclude": [],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)--"
@krnd
krnd / .editorconfig
Last active July 2, 2021 17:50
editorconfig
# .editorconfig
#
# AUTHOR
# krnd
#
# VERSION
# 1.1
#
# SEE ALSO
# https://editorconfig.org/#file-format-details
@krnd
krnd / .style.yapf
Last active February 25, 2022 04:20
python-yapf
# .style.yapf
#
# DESCRIPTION
# Configuration file for the python formatter yapf.
#
# This configuration is based on the generic
# configuration published on GitHub.
#
# AUTHOR
# krnd
@krnd
krnd / .flake8
Last active August 23, 2023 12:11
python-flake8
# .flake8
#
# AUTHOR
# krnd
#
# VERSION
# 1.4
#
# SEE ALSO
# http://flake8.pycqa.org/en/latest/user/options.html
@krnd
krnd / .eslintrc
Last active August 13, 2020 17:54
javascript-eslint
# .eslintrc
#
# DESCRIPTION
# Generic configuration file (YAML) for ESLint.
#
# This configuration is based on the generic
# configuration published on GitHub.
#
# AUTHOR
# krnd