Skip to content

Commit

Permalink
~ Added basic functionality including Javascript/CSS editors and Java…
Browse files Browse the repository at this point in the history
…script loading on forms.
  • Loading branch information
veryspry committed Feb 1, 2024
0 parents commit 61acfde
Show file tree
Hide file tree
Showing 16 changed files with 2,998 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2
18 changes: 18 additions & 0 deletions .github/workflows/php-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PHP Lint

on: [push]

jobs:
PHPCS:
name: PHPCS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
composer install --dev --prefer-dist --no-progress --no-suggest --no-scripts
composer require --dev staabm/annotate-pull-request-from-checkstyle --no-scripts
- name: Run phpcs
run: ./vendor/bin/phpcs -q --report=checkstyle | ./vendor/bin/cs2pr --graceful-warnings
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# macOS Junk Files
.DS_Store

# Composer
vendor
third-party

# Cypress
cypress/screenshots
cypress/videos

# NPM/Yarn
/node_modules

# Transpiled/Built/Minified Files
*.js.map
*.min.js
*.css.map
*.min.css
/dist
/js/built

# Private Files (Personal or sensitive info to not version control)
.env
.envrc
*.log
_output
results.xml
Empty file added changelog.txt
Empty file.
Loading

0 comments on commit 61acfde

Please sign in to comment.