Skip to content

Instantly share code, notes, and snippets.

@falkoschumann
falkoschumann / .eslintrc.json
Last active April 20, 2024 09:57
Node.js project starter
{
"env": {
"es2022": true,
"browser": true,
"cypress/globals": true
},
"extends": ["eslint:recommended", "plugin:cypress/recommended"],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
@falkoschumann
falkoschumann / .editorconfig
Last active April 16, 2024 16:02
Common files for a new project.
# EditorConfig is awesome: https://EditorConfig.org
# Based on following Google Style Guides:
# - C++: https://google.github.io/styleguide/cppguide.html
# - C#: https://google.github.io/styleguide/csharp-style.html
# - Go: https://google.github.io/styleguide/goguide.html
# - HTML/CSS: https://google.github.io/styleguide/htmlcssguide.html
# - JavaScript: https://google.github.io/styleguide/jsguide.html
# - Java: https://google.github.io/styleguide/javaguide.html
# - Python: https://google.github.io/styleguide/pyguide.html
@falkoschumann
falkoschumann / build.gradle
Last active October 20, 2023 19:45
Gradle project starter
import org.apache.tools.ant.filters.FixCrLfFilter
import java.time.LocalDate
plugins {
id 'application'
id 'checkstyle'
id 'jacoco'
id 'java'
id 'com.diffplug.spotless' version '6.20.0'