Skip to content

Commit

Permalink
Merge pull request #343 from bbannon/Dot-files
Browse files Browse the repository at this point in the history
Dot files
  • Loading branch information
craigk5n authored Sep 12, 2023
2 parents 8a5cfcd + 4d0d0de commit 5a07784
Show file tree
Hide file tree
Showing 12 changed files with 112 additions and 18 deletions.
3 changes: 3 additions & 0 deletions ,dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.git
includes/settings.php
node_modules
5 changes: 5 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Browsers that we support.

defaults,
not IE 11,
maintained node versions
51 changes: 51 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# EditorConfig is awesome: https://EditorConfig.org

# Stop the editor from looking for ".editorconfig" files in the parent directories.
root = true

[*]
# Non-configurable Prettier behavior.
# Set default charset
charset = utf-8

insert_final_newline = true
# Caveat: Prettier won’t trim trailing whitespace inside template strings,
# but your editor might.
trim_trailing_whitespace = true

# Configurable Prettier behaviors
# (change these if your Prettier config differs)
end_of_line = lf
indent_size = 2
indent_style = space
max_line_length = 80

# examples:
# Unix-style newlines with a newline ending every file.
# [*]
# end_of_line = lf
# insert_final_newline = true
#
# Matches multiple files with brace expansion notation.
# Set default charset
# [*.{js,py}]
# charset = utf-8
#
# 4 space indentation.
# [*.py]
# indent_style = space
# indent_size = 4
#
# Tab indentation (no size specified).
# [Makefile]
# indent_style = tab
#
# Indentation override for all JS under "lib" directory.
# [lib/**.js]
# indent_style = space
# indent_size = 2
#
# Matches the exact files either "package.json" or ".travis.yml".
# [{package.json,.travis.yml}]
# indent_style = space
# indent_size = 2
24 changes: 15 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
*.class
.DS_Store
.htaccess
includes/htmlarea
includes/htmlare*
includes/settings.php
.DS_Store
mysql-data
*.sha
vendor
*.orig
*.save
*.class
*.log
*.jar
*.jar
java/
*.log
mysql-data
node_modules/
*.old
*.orig
pub/
__pycache__
*.save
*.sha
tests/.phpunit.result.cache
vendor/
wc-icons/
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
global-style = true
init-author-email = "cknudsen@cknudsen.com"
init-author-name = "Craig Knudsen"
init-author-url = "http://www.k5n.us/cknudsen"
init-license = GPL-2.0
init-version = 1.9.1
18 changes: 18 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.DS_Store
.htaccess
*.min.*
*.orig
*.save
*.sha
includes/classes/captcha/
includes/classes/hKit/
includes/classes/phpmailer/
includes/htmlare*
includes/settings.php
java/
mysql-data
node_modules/
pub/
tests/
vendor/
wc-icons/
14 changes: 14 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"overrides": [
{
"files": ".prettierrc.json",
"options": {
"parser": "json"
}
}
],
"editorconfig": true,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
1 change: 0 additions & 1 deletion docs/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion includes/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion includes/classes/phpmailer/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions tests/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions wc-icons/.gitignore

This file was deleted.

0 comments on commit 5a07784

Please sign in to comment.