Commit 67f0a6e6 authored by Henk Verlinde's avatar Henk Verlinde
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

.dependabot/config.yml

0 → 100644
+14 −0
Original line number Diff line number Diff line
version: 1
update_configs:
  - package_manager: javascript
    directory: /
    update_schedule: live
    allowed_updates:
      - match:
          update_type: security
    automerged_updates:
      - match:
          dependency_type: all
          update_type: in_range
    version_requirement_updates: widen_ranges
 No newline at end of file

.editorconfig

0 → 100644
+12 −0
Original line number Diff line number Diff line
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
 No newline at end of file

.eslintignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
assets/js/vendor
node_modules
 No newline at end of file

.eslintrc.json

0 → 100644
+31 −0
Original line number Diff line number Diff line
{
  "env": {
    "browser": true,
    "commonjs": true,
    "es6": true,
    "node": true
  },
  "extends": "eslint:recommended",
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaVersion": 2018
  },
  "rules": {
    "no-console": 0,
    "quotes": ["error", "single"],
    "comma-dangle": [
      "error",
      {
        "arrays": "always-multiline",
        "objects": "always-multiline",
        "imports": "always-multiline",
        "exports": "always-multiline",
        "functions": "ignore"
      }
    ]
  }
}
 No newline at end of file

.gitignore

0 → 100644
+6 −0
Original line number Diff line number Diff line
functions
node_modules
public
resources
yarn-error.log
 No newline at end of file